Advertisement
Guest User

Untitled

a guest
Jul 29th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. #------------------------------------------------------------------------------
  2. # CONNECTIONS AND AUTHENTICATION
  3. #------------------------------------------------------------------------------
  4.  
  5. # - Connection Settings -
  6.  
  7. listen_addresses = '*' # what IP address(es) to listen on;
  8. # comma-separated list of addresses;
  9. # defaults to 'localhost', '*' = all
  10. # (change requires restart)
  11. port = 5432 # (change requires restart)
  12. max_connections = 100 # (change requires restart)
  13. # Note: Increasing max_connections costs ~400 bytes of shared memory per
  14. # connection slot, plus lock space (see max_locks_per_transaction).
  15. #superuser_reserved_connections = 3 # (change requires restart)
  16. #unix_socket_directory = '' # (change requires restart)
  17. #unix_socket_group = '' # (change requires restart)
  18. #unix_socket_permissions = 0777 # begin with 0 to use octal notation
  19. # (change requires restart)
  20. #bonjour = off # advertise server via Bonjour
  21. # (change requires restart)
  22. #bonjour_name = '' # defaults to the computer name
  23. # (change requires restart)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement