mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-22 19:33:27 +01:00
Set socket mode after creation.
This commit is contained in:
parent
89316487e3
commit
ed1673beed
1 changed files with 6 additions and 1 deletions
|
@ -174,7 +174,7 @@ func (s *Server) Run() error {
|
||||||
listenStr += fmt.Sprintf(" %s[https]", s.config.ListenHTTPS)
|
listenStr += fmt.Sprintf(" %s[https]", s.config.ListenHTTPS)
|
||||||
}
|
}
|
||||||
if s.config.ListenUnix != "" {
|
if s.config.ListenUnix != "" {
|
||||||
listenStr += fmt.Sprintf(" %s[unix]", s.config.ListenUnix)
|
listenStr += fmt.Sprintf(" %s[unix/%04o]", s.config.ListenUnix, s.config.ListenUnixMode)
|
||||||
}
|
}
|
||||||
if s.config.SMTPServerListen != "" {
|
if s.config.SMTPServerListen != "" {
|
||||||
listenStr += fmt.Sprintf(" %s[smtp]", s.config.SMTPServerListen)
|
listenStr += fmt.Sprintf(" %s[smtp]", s.config.SMTPServerListen)
|
||||||
|
@ -207,6 +207,11 @@ func (s *Server) Run() error {
|
||||||
errChan <- err
|
errChan <- err
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if err := os.Chmod(s.config.ListenUnix, s.config.ListenUnixMode); err != nil {
|
||||||
|
s.unixListener.Close()
|
||||||
|
errChan <- err
|
||||||
|
return
|
||||||
|
}
|
||||||
s.mu.Unlock()
|
s.mu.Unlock()
|
||||||
httpServer := &http.Server{Handler: mux}
|
httpServer := &http.Server{Handler: mux}
|
||||||
errChan <- httpServer.Serve(s.unixListener)
|
errChan <- httpServer.Serve(s.unixListener)
|
||||||
|
|
Loading…
Reference in a new issue