Advertisement
Guest User

Untitled

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