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

Unified Diff: modules/discourse/templates/discourse.conf.erb

Issue 29347356: Issue 4234 - Migrate Discourse to a Docker-based setup (Closed)
Patch Set: Clone from GitHub, updated to Discourse 1.6.4 Created Oct. 12, 2016, 1:17 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « modules/discourse/templates/app.yml.erb ('k') | modules/private-stub/hiera/roles/intraforumserver.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/discourse/templates/discourse.conf.erb
===================================================================
deleted file mode 100644
--- a/modules/discourse/templates/discourse.conf.erb
+++ /dev/null
@@ -1,76 +0,0 @@
-# connection pool size
-db_pool = 5
-
-# database timeout in milliseconds
-db_timeout = 5000
-
-# socket file used to access db
-db_socket =
-
-# host address for db server
-# This is set to blank so it tries to use sockets first
-db_host = localhost
-
-# port running db server, no need to set it
-db_port =
-
-# database name running discourse
-db_name = discourse
-
-# username accessing database
-db_username = discourse
-
-# password used to access the db
-db_password = <%= @database_password %>
-
-# hostname running the forum
-hostname = <%= @domain %>
-
-# address of smtp server used to send emails
-smtp_address =
-
-# port of smtp server used to send emails
-smtp_port = 25
-
-# domain passed to smtp server
-smtp_domain =
-
-# username for smtp server
-smtp_user_name =
-
-# password for smtp server
-smtp_password =
-
-# smtp authentication mechanism
-smtp_authentication = plain
-
-# enable TLS encryption for smtp connections
-smtp_enable_start_tls = true
-
-# load MiniProfiler in production, to be used by developers
-load_mini_profiler = false
-
-# recommended, cdn used to access assets
-cdn_url =
-
-# comma delimited list of emails that have developer level access
-developer_emails = <% admins.each do |admin| %><%= admin %>, <% end %>
-
-# redis server address
-redis_host = localhost
-
-# redis server port
-redis_port = 6379
-
-# redis database
-redis_db = 0
-
-# redis password
-redis_password =
-
-# enable Cross-origin Resource Sharing (CORS) directly at the application level
-enable_cors = false
-cors_origin = '*'
-
-# enable if you really need to serve assets in prd
-serve_static_assets = false
« no previous file with comments | « modules/discourse/templates/app.yml.erb ('k') | modules/private-stub/hiera/roles/intraforumserver.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld