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

Delta Between Two Patch Sets: modules/discourse/templates/discourse.conf.erb

Issue 6221863587938304: Issue 212 - Update Discourse (Closed)
Left Patch Set: Removed post action types Created March 27, 2014, 11:09 p.m.
Right Patch Set: Disabled mini profiler Created March 28, 2014, 11:51 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « modules/discourse/templates/database.yml.erb ('k') | modules/discourse/templates/site.erb » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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 30 matching lines...) Expand all
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 # enable MiniProfiler for administrators
51 enable_mini_profiler = true 51 enable_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
LEFTRIGHT

Powered by Google App Engine
This is Rietveld