]> git.openstreetmap.org Git - chef.git/blob - cookbooks/community/templates/default/web_only.yml.erb
0ba873f5951b669f2d77af368b761f5c8a01e0f5
[chef.git] / cookbooks / community / templates / default / web_only.yml.erb
1 templates:
2   - "templates/web.template.yml"
3   - "templates/web.ipv6.template.yml"
4   - "templates/web.ssl.template.yml"
5
6 ## which TCP/IP ports should this container expose?
7 ## If you want Discourse to share a port with another webserver like Apache or nginx,
8 ## see https://meta.discourse.org/t/17247 for details
9 expose:
10   - "80:80"   # http
11   - "443:443" # https
12
13 # Use 'links' key to link containers together, aka use Docker --link flag.
14 links:
15   - link:
16       name: data
17       alias: data
18
19 # any extra arguments for Docker?
20 # docker_args:
21
22 # Latest Version v3.0.5
23 params:
24   version: stable
25
26 env:
27   LC_ALL: en_US.UTF-8
28   LANG: en_US.UTF-8
29   LANGUAGE: en_US.UTF-8
30   DISCOURSE_FORCE_HTTPS: true
31
32   ## How many concurrent web requests are supported? Depends on memory and CPU cores.
33   ## will be set automatically by bootstrap based on detected CPUs, or you can override
34   UNICORN_WORKERS: <%= node.cpu_cores %>
35
36   ## TODO: The domain name this Discourse instance will respond to
37   DISCOURSE_HOSTNAME: community.openstreetmap.org
38   DISCOURSE_CDN_URL: https://community-cdn.openstreetmap.org
39
40   ## Uncomment if you want the container to be started with the same
41   ## hostname (-h option) as specified above (default "$hostname-$config")
42   #DOCKER_USE_HOSTNAME: true
43
44   ## TODO: List of comma delimited emails that will be made admin and developer
45   ## on initial signup example 'user1@example.com,user2@example.com'
46   DISCOURSE_DEVELOPER_EMAILS: 'operations@openstreetmap.org'
47
48   DISCOURSE_SMTP_ADDRESS: <%= node[:exim][:smarthost_via].split(":", 2)[0] %>
49   DISCOURSE_SMTP_PORT: <%= node[:exim][:smarthost_via].split(":", 2)[1] || "25" %>
50   DISCOURSE_SMTP_OPENSSL_VERIFY_MODE: none
51   DISCOURSE_SMTP_USER_NAME:
52   DISCOURSE_SMTP_PASSWORD:
53   DISCOURSE_SMTP_DOMAIN: community.openstreetmap.org
54   DISCOURSE_NOTIFICATION_EMAIL: community@noreply.openstreetmap.org
55
56   ## TODO: configure connectivity to the databases
57   DISCOURSE_DB_SOCKET: ''
58   #DISCOURSE_DB_USERNAME: discourse
59   DISCOURSE_DB_PASSWORD: '<%= @passwords["database"] %>'
60   DISCOURSE_DB_HOST: data
61   DISCOURSE_REDIS_HOST: data
62
63   ## The maxmind geolocation IP address key for IP address lookup
64   ## see https://meta.discourse.org/t/-/137387/23 for details
65 <% if @license_keys -%>
66   DISCOURSE_MAXMIND_LICENSE_KEY: '<%= @license_keys[node[:geoipupdate][:account]] %>'
67 <% end -%>
68
69   # Allow list for prometheus metric collection
70   DISCOURSE_PROMETHEUS_TRUSTED_IP_ALLOWLIST_REGEX: '^<%= @prometheus_servers.map { |a| Regexp.escape(a) }.join("|") %>$'
71
72   # Increase base SIDEKIQ memory limit to 1GB
73   UNICORN_SIDEKIQ_MAX_RSS: 1000
74
75 volumes:
76   - volume:
77       host: /srv/community.openstreetmap.org/shared/web-only
78       guest: /shared
79   - volume:
80       host: /srv/community.openstreetmap.org/shared/web-only/log/var-log
81       guest: /var/log
82   - volume:
83       host: /etc/ssl/certs/community.openstreetmap.org.pem
84       guest: /shared/ssl/ssl.crt
85   - volume:
86       host: /etc/ssl/private/community.openstreetmap.org.key
87       guest: /shared/ssl/ssl.key
88   - volume:
89       host: /etc/ssl/certs/dhparam.pem
90       guest: /shared/ssl/dhparam.pem
91   - volume:
92       host: /srv/community.openstreetmap.org/files/update-feeds.atom
93       guest: /shared/feeds/update-feeds.atom
94
95 ## Plugins go here
96 ## see https://meta.discourse.org/t/19157 for details
97 hooks:
98   after_code:
99     - exec:
100         cd: $home/plugins
101         cmd:
102           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-oauth2-basic.git
103           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-solved.git
104           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-canned-replies.git
105           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-reactions.git
106           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-prometheus.git
107           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-translator.git
108           - sudo -H -E -u discourse git clone --depth 1 --branch main https://github.com/discourse/discourse-saved-searches.git
109     - exec:
110         # Needs to be copied in else builtin git cleanup fails
111         cd: $home
112         cmd:
113           - sudo -H -E -u discourse cp /shared/feeds/update-feeds.atom public/update-feeds.atom
114   after_ssl:
115     - replace:
116         filename: "/etc/nginx/conf.d/discourse.conf"
117         from: /listen 80;/
118         to: |
119           listen 80;
120           listen [::]:80;
121           rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
122
123     - replace:
124         filename: "/etc/nginx/conf.d/discourse.conf"
125         from: /add_header.+/
126         to: |
127           add_header Strict-Transport-Security 'max-age=31536000; preload';
128           ssl_stapling on;
129           resolver <%= node[:networking][:nameservers].join(" ") %>;
130           resolver_timeout 5s;
131           ssl_dhparam /shared/ssl/dhparam.pem;