Advertisement
Guest User

Untitled

a guest
Sep 13th, 2018
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. ; Note: This value is mandatory.
  2. listen = 127.0.0.1:9000
  3.  
  4. ; Set listen(2) backlog.
  5. ; Default Value: 511 (-1 on FreeBSD and OpenBSD)
  6. ;listen.backlog = 511
  7.  
  8. ; Set permissions for unix socket, if one is used. In Linux, read/write
  9. ; permissions must be set in order to allow connections from a web server. Many
  10. ; BSD-derived systems allow connections regardless of permissions.
  11. ; Default Values: user and group are set as the running user
  12. ; mode is set to 0660
  13. listen.owner = nginx
  14. listen.group = nginx
  15. ;listen.mode = 0660
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement