Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. #------------------------------------------------------------------------------
  3. # CONNECTIONS AND AUTHENTICATION
  4. #------------------------------------------------------------------------------
  5.  
  6. # - Connection Settings -
  7.  
  8. listen_addresses = 'localhost'          # what IP address(es) to listen on;
  9.                                         # comma-separated list of addresses;
  10.                                         # defaults to 'localhost'; use '*' for all
  11.                                         # (change requires restart)
  12. #port = 5432                            # (change requires restart)
  13. max_connections = 10                    # (change requires restart)
  14.  
  15. #------------------------------------------------------------------------------
  16. # RESOURCE USAGE (except WAL)
  17. #------------------------------------------------------------------------------
  18.  
  19. # - Memory -
  20.  
  21. shared_buffers = 24MB                   # min 128kB
  22.                                         # (change requires restart)
  23.  
  24. log_timezone = 'Asia/Kolkata'
  25. # - Locale and Formatting -
  26.  
  27. datestyle = 'iso, mdy'
  28. #intervalstyle = 'postgres'
  29. timezone = 'Asia/Kolkata'
  30. #timezone_abbreviations = 'Default'     # Select the set of available time zone
  31.                                         # abbreviations.  Currently, there are
  32.                                         #   Default
  33.                                         #   Australia
  34.                                         #   India
  35.                                         # You can create your own file in
  36.                                         # share/timezonesets/.
  37.  
  38. # These settings are initialized by initdb, but they can be changed.
  39. lc_messages = 'en_IN'                   # locale for system error message
  40.                                         # strings
  41. lc_monetary = 'en_IN'                   # locale for monetary formatting
  42. lc_numeric = 'en_IN'                    # locale for number formatting
  43. lc_time = 'en_IN'                               # locale for time formatting
  44.  
  45. # default configuration for text search
  46. default_text_search_config = 'pg_catalog.english'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement