Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. # Put your actual configuration here
  2. # ----------------------------------
  3. #
  4. # If you want to allow non-local connections, you need to add more
  5. # "host" records. In that case you will also need to make PostgreSQL
  6. # listen on a non-local interface via the listen_addresses
  7. # configuration parameter, or via the -i or -h command line switches.
  8.  
  9.  
  10.  
  11. # TYPE DATABASE USER ADDRESS METHOD
  12.  
  13. # "local" is for Unix domain socket connections only
  14. local all all peer
  15.  
  16. # IPv4 local connections:
  17. #host all all 127.0.0.1/32 ident
  18. # IPv6 local connections:
  19. #host all all ::1/128 ident
  20. # Allow replication connections from localhost, by a user with the
  21. # replication privilege.
  22. #local replication postgres peer
  23. #host replication postgres 127.0.0.1/32 ident
  24. #host replication postgres ::1/128 ident
  25. local all all md5
  26. host all all all md5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement