2 - "templates/web.template.yml"
3 - "templates/web.ssl.template.yml"
5 ## which TCP/IP ports should this container expose?
6 ## If you want Discourse to share a port with another webserver like Apache or nginx,
7 ## see https://meta.discourse.org/t/17247 for details
12 # Use 'links' key to link containers together, aka use Docker --link flag.
18 # any extra arguments for Docker?
21 # Latest Version v2.8.13
29 DISCOURSE_FORCE_HTTPS: true
31 ## How many concurrent web requests are supported? Depends on memory and CPU cores.
32 ## will be set automatically by bootstrap based on detected CPUs, or you can override
33 UNICORN_WORKERS: <%= node.cpu_cores %>
35 ## TODO: The domain name this Discourse instance will respond to
36 DISCOURSE_HOSTNAME: community.openstreetmap.org
37 DISCOURSE_CDN_URL: https://community-cdn.openstreetmap.org
39 ## Uncomment if you want the container to be started with the same
40 ## hostname (-h option) as specified above (default "$hostname-$config")
41 #DOCKER_USE_HOSTNAME: true
43 ## TODO: List of comma delimited emails that will be made admin and developer
44 ## on initial signup example 'user1@example.com,user2@example.com'
45 DISCOURSE_DEVELOPER_EMAILS: 'operations@openstreetmap.org'
47 DISCOURSE_SMTP_ADDRESS: <%= node[:exim][:smarthost_via].split(":", 2)[0] %>
48 DISCOURSE_SMTP_PORT: <%= node[:exim][:smarthost_via].split(":", 2)[1] || "25" %>
49 DISCOURSE_SMTP_OPENSSL_VERIFY_MODE: none
50 DISCOURSE_SMTP_USER_NAME:
51 DISCOURSE_SMTP_PASSWORD:
52 DISCOURSE_SMTP_DOMAIN: community.openstreetmap.org
53 DISCOURSE_NOTIFICATION_EMAIL: community@noreply.openstreetmap.org
55 ## TODO: configure connectivity to the databases
56 DISCOURSE_DB_SOCKET: ''
57 #DISCOURSE_DB_USERNAME: discourse
58 DISCOURSE_DB_PASSWORD: '<%= @passwords["database"] %>'
59 DISCOURSE_DB_HOST: data
60 DISCOURSE_REDIS_HOST: data
62 ## The maxmind geolocation IP address key for IP address lookup
63 ## see https://meta.discourse.org/t/-/137387/23 for details
64 <% if @license_keys -%>
65 DISCOURSE_MAXMIND_LICENSE_KEY: '<%= @license_keys[node[:geoipupdate][:account]] %>'
70 host: /srv/community.openstreetmap.org/shared/web-only
73 host: /srv/community.openstreetmap.org/shared/web-only/log/var-log
76 host: /etc/ssl/certs/community.openstreetmap.org.pem
77 guest: /shared/ssl/ssl.crt
79 host: /etc/ssl/private/community.openstreetmap.org.key
80 guest: /shared/ssl/ssl.key
83 ## see https://meta.discourse.org/t/19157 for details
89 - git clone --depth 1 https://github.com/discourse/discourse-oauth2-basic.git
90 - git clone --depth 1 https://github.com/discourse/discourse-solved.git
91 - git clone --depth 1 https://github.com/discourse/discourse-canned-replies.git
92 - git clone --depth 1 https://github.com/discourse/discourse-reactions.git
93 - git clone --depth 1 https://github.com/discourse/discourse-prometheus.git
94 - git clone --depth 1 https://github.com/discourse/discourse-translator.git
97 filename: "/etc/nginx/conf.d/discourse.conf"
101 rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
104 filename: "/etc/nginx/conf.d/discourse.conf"
107 add_header Strict-Transport-Security 'max-age=63072000';