Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #------------------------------------------------------------------------------
- # CONNECTIONS AND AUTHENTICATION
- #------------------------------------------------------------------------------
- # - Connection Settings -
- listen_addresses = 'localhost' # what IP address(es) to listen on;
- # comma-separated list of addresses;
- # defaults to 'localhost'; use '*' for all
- # (change requires restart)
- #port = 5432 # (change requires restart)
- max_connections = 10 # (change requires restart)
- #------------------------------------------------------------------------------
- # RESOURCE USAGE (except WAL)
- #------------------------------------------------------------------------------
- # - Memory -
- shared_buffers = 24MB # min 128kB
- # (change requires restart)
- log_timezone = 'Asia/Kolkata'
- # - Locale and Formatting -
- datestyle = 'iso, mdy'
- #intervalstyle = 'postgres'
- timezone = 'Asia/Kolkata'
- #timezone_abbreviations = 'Default' # Select the set of available time zone
- # abbreviations. Currently, there are
- # Default
- # Australia
- # India
- # You can create your own file in
- # share/timezonesets/.
- # These settings are initialized by initdb, but they can be changed.
- lc_messages = 'en_IN' # locale for system error message
- # strings
- lc_monetary = 'en_IN' # locale for monetary formatting
- lc_numeric = 'en_IN' # locale for number formatting
- lc_time = 'en_IN' # locale for time formatting
- # default configuration for text search
- default_text_search_config = 'pg_catalog.english'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement