0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Merge pull request #1091 from mikepulaski/master

Caddyfiles read from STDIN now have server types associated with them.
This commit is contained in:
Matt Holt 2016-09-05 13:14:35 -06:00 committed by GitHub
commit 1ea96def31
2 changed files with 5 additions and 4 deletions

View file

@ -388,7 +388,7 @@ func (i *Instance) Wait() {
// but the Input value will be nil. An error is only returned
// if there was an error reading the pipe, even if the length
// of what was read is 0.
func CaddyfileFromPipe(f *os.File) (Input, error) {
func CaddyfileFromPipe(f *os.File, serverType string) (Input, error) {
fi, err := f.Stat()
if err == nil && fi.Mode()&os.ModeCharDevice == 0 {
// Note that a non-nil error is not a problem. Windows
@ -402,8 +402,9 @@ func CaddyfileFromPipe(f *os.File) (Input, error) {
return nil, err
}
return CaddyfileInput{
Contents: confBody,
Filepath: f.Name(),
Contents: confBody,
Filepath: f.Name(),
ServerTypeName: serverType,
}, nil
}

View file

@ -136,7 +136,7 @@ func confLoader(serverType string) (caddy.Input, error) {
}
if conf == "stdin" {
return caddy.CaddyfileFromPipe(os.Stdin)
return caddy.CaddyfileFromPipe(os.Stdin, serverType)
}
contents, err := ioutil.ReadFile(conf)