]> git.openstreetmap.org Git - chef.git/blob - cookbooks/community/templates/default/web_only.yml.erb
community: update to v2.8.13
[chef.git] / cookbooks / community / templates / default / web_only.yml.erb
1 templates:
2   - "templates/web.template.yml"
3   - "templates/web.ratelimited.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 # Workaround bug: https://github.com/discourse/discourse_docker/pull/505
23 # params:
24 #  version: v2.8.13 - NOT USED HERE. UPDATE THE EXEC GIT ACTIONS BELOW WITH VERSION
25
26 env:
27   LC_ALL: en_US.UTF-8
28   LANG: en_US.UTF-8
29   LANGUAGE: en_US.UTF-8
30   EMBER_CLI_PROD_ASSETS: 1
31   DISCOURSE_FORCE_HTTPS: true
32
33   ## How many concurrent web requests are supported? Depends on memory and CPU cores.
34   ## will be set automatically by bootstrap based on detected CPUs, or you can override
35   UNICORN_WORKERS: <%= node[:cpu][:total] %>
36
37   ## TODO: The domain name this Discourse instance will respond to
38   DISCOURSE_HOSTNAME: community.openstreetmap.org
39   DISCOURSE_CDN_URL: https://community-cdn.openstreetmap.org
40
41   ## Uncomment if you want the container to be started with the same
42   ## hostname (-h option) as specified above (default "$hostname-$config")
43   #DOCKER_USE_HOSTNAME: true
44
45   ## TODO: List of comma delimited emails that will be made admin and developer
46   ## on initial signup example 'user1@example.com,user2@example.com'
47   DISCOURSE_DEVELOPER_EMAILS: 'operations@openstreetmap.org'
48
49   DISCOURSE_SMTP_ADDRESS: <%= node[:exim][:smarthost_via].split(":", 2)[0] %>
50   DISCOURSE_SMTP_PORT: <%= node[:exim][:smarthost_via].split(":", 2)[1] || "25" %>
51   DISCOURSE_SMTP_OPENSSL_VERIFY_MODE: none
52   DISCOURSE_SMTP_USER_NAME:
53   DISCOURSE_SMTP_PASSWORD:
54   DISCOURSE_SMTP_DOMAIN: community.openstreetmap.org
55   DISCOURSE_NOTIFICATION_EMAIL: community@noreply.openstreetmap.org
56
57   ## TODO: configure connectivity to the databases
58   DISCOURSE_DB_SOCKET: ''
59   #DISCOURSE_DB_USERNAME: discourse
60   DISCOURSE_DB_PASSWORD: '<%= @passwords["database"] %>'
61   DISCOURSE_DB_HOST: data
62   DISCOURSE_REDIS_HOST: data
63
64   ## The maxmind geolocation IP address key for IP address lookup
65   ## see https://meta.discourse.org/t/-/137387/23 for details
66 <% if @license_keys -%>
67   DISCOURSE_MAXMIND_LICENSE_KEY: '<%= @license_keys[node[:geoipupdate][:account]] %>'
68 <% end -%>
69
70 volumes:
71   - volume:
72       host: /srv/community.openstreetmap.org/shared/web-only
73       guest: /shared
74   - volume:
75       host: /srv/community.openstreetmap.org/shared/web-only/log/var-log
76       guest: /var/log
77   - volume:
78       host: /etc/ssl/certs/community.openstreetmap.org.pem
79       guest: /shared/ssl/ssl.crt
80   - volume:
81       host: /etc/ssl/private/community.openstreetmap.org.key
82       guest: /shared/ssl/ssl.key
83
84 ## Plugins go here
85 ## see https://meta.discourse.org/t/19157 for details
86 hooks:
87   after_code:
88     - exec:
89         cd: $home/plugins
90         cmd:
91           - git clone --depth 1 https://github.com/discourse/discourse-oauth2-basic.git
92           - git clone --depth 1 https://github.com/discourse/discourse-solved.git
93           - git clone --depth 1 https://github.com/discourse/discourse-canned-replies.git
94           - git clone --depth 1 https://github.com/discourse/discourse-reactions.git
95           - git clone --depth 1 https://github.com/discourse/discourse-prometheus.git
96           - git clone --depth 1 https://github.com/discourse/discourse-translator.git
97     - exec:
98         cd: $home
99         cmd:
100           - git fetch --depth=1 origin tag v2.8.13 --no-tags
101           - git checkout v2.8.13
102   after_ssl:
103     - replace:
104         filename: "/etc/nginx/conf.d/discourse.conf"
105         from: /listen 80;/
106         to: |
107           listen 80;
108           rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
109
110     - replace:
111         filename: "/etc/nginx/conf.d/discourse.conf"
112         from: /add_header.+/
113         to: |
114           add_header Strict-Transport-Security 'max-age=63072000';