Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: modules/discourse/templates/discourse.conf.erb

Issue 4924880143253504: Issue 2471 - Update our Discourse instance (Closed)
Patch Set: Check out correct revision Created May 12, 2015, 10:15 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 # connection pool size 1 # connection pool size
2 db_pool = 5 2 db_pool = 5
3 3
4 # database timeout in milliseconds 4 # database timeout in milliseconds
5 db_timeout = 5000 5 db_timeout = 5000
6 6
7 # socket file used to access db 7 # socket file used to access db
8 db_socket = 8 db_socket =
9 9
10 # host address for db server 10 # host address for db server
(...skipping 29 matching lines...) Expand all
40 40
41 # password for smtp server 41 # password for smtp server
42 smtp_password = 42 smtp_password =
43 43
44 # smtp authentication mechanism 44 # smtp authentication mechanism
45 smtp_authentication = plain 45 smtp_authentication = plain
46 46
47 # enable TLS encryption for smtp connections 47 # enable TLS encryption for smtp connections
48 smtp_enable_start_tls = true 48 smtp_enable_start_tls = true
49 49
50 # enable MiniProfiler for administrators 50 # load MiniProfiler in production, to be used by developers
51 enable_mini_profiler = false 51 load_mini_profiler = false
52 52
53 # recommended, cdn used to access assets 53 # recommended, cdn used to access assets
54 cdn_url = 54 cdn_url =
55 55
56 # comma delimited list of emails that have developer level access 56 # comma delimited list of emails that have developer level access
57 developer_emails = <% admins.each do |admin| %><%= admin %>, <% end %> 57 developer_emails = <% admins.each do |admin| %><%= admin %>, <% end %>
58 58
59 # redis server address 59 # redis server address
60 redis_host = localhost 60 redis_host = localhost
61 61
62 # redis server port 62 # redis server port
63 redis_port = 6379 63 redis_port = 6379
64 64
65 # redis database 65 # redis database
66 redis_db = 0 66 redis_db = 0
67 67
68 # redis password 68 # redis password
69 redis_password = 69 redis_password =
70 70
71 # enable Cross-origin Resource Sharing (CORS) directly at the application level 71 # enable Cross-origin Resource Sharing (CORS) directly at the application level
72 enable_cors = false 72 enable_cors = false
73 cors_origin = '*' 73 cors_origin = '*'
74 74
75 # enable if you really need to serve assets in prd 75 # enable if you really need to serve assets in prd
76 serve_static_assets = false 76 serve_static_assets = false
OLDNEW

Powered by Google App Engine
This is Rietveld