Fixed paths in the postgres upgrade instructions
[discourse_docker.git] / templates / web.template.yml
CommitLineData
9fb5f2d3 1env:
9fb5f2d3 2 # You can have redis on a different box
9fb5f2d3
SS
3 RAILS_ENV: 'production'
4 UNICORN_WORKERS: 3
42b06eef 5 UNICORN_SIDEKIQS: 1
5819e899
S
6 # this gives us very good cache coverage, 96 -> 99
7 # in practice it is 1-2% perf improvement
54e43936 8 RUBY_GLOBAL_METHOD_CACHE_SIZE: 131072
9fb5f2d3 9
9be8f5b9 10 DISCOURSE_DB_SOCKET: /var/run/postgresql
c148f4c9
SS
11 DISCOURSE_DB_HOST:
12 DISCOURSE_DB_PORT:
38000fc6
SS
13
14
9fb5f2d3
SS
15params:
16 # SSH key is required for remote access into the container
b56a2bd7 17 version: tests-passed
9fb5f2d3
SS
18
19 home: /var/www/discourse
44c59d37 20 upload_size: 10m
9fb5f2d3 21
9fb5f2d3 22run:
d321b1b8 23 # see: https://www.imagemagick.org/discourse-server/viewtopic.php?f=4&t=29588
d47aa69b
S
24 - replace:
25 filename: /usr/local/etc/ImageMagick-6/policy.xml
26 from: "<policymap>"
27 to: |
28 <policymap>
29 <policy domain="coder" rights="none" pattern="EPHEMERAL" />
ada30c34 30 <policy domain="coder" rights="none" pattern="URL" />
d47aa69b
S
31 <policy domain="coder" rights="none" pattern="HTTPS" />
32 <policy domain="coder" rights="none" pattern="MVG" />
33 <policy domain="coder" rights="none" pattern="MSL" />
ada30c34
MT
34 <policy domain="coder" rights="none" pattern="TEXT" />
35 <policy domain="coder" rights="none" pattern="SHOW" />
36 <policy domain="coder" rights="none" pattern="WIN" />
37 <policy domain="coder" rights="none" pattern="PLT" />
d47aa69b 38
b7f9f4c7 39 - exec: /usr/local/bin/ruby -e 'if ENV["DISCOURSE_SMTP_ADDRESS"] == "smtp.example.com"; puts "Aborting! Mail is not configured!"; exit 1; end'
28aa70d0 40 - exec: /usr/local/bin/ruby -e 'if ENV["DISCOURSE_HOSTNAME"] == "discourse.example.com"; puts "Aborting! Domain is not configured!"; exit 1; end'
cc81fc95 41 - exec: chown -R discourse /home/discourse
87f8d0b3 42 - file:
089518ef 43 path: /etc/runit/1.d/copy-env
87f8d0b3
SS
44 chmod: "+x"
45 contents: |
46 #!/bin/bash
c4498636 47 env > ~/boot_env
87f8d0b3 48 conf=/var/www/discourse/config/discourse.conf
87f8d0b3 49
1cb802ad 50 # find DISCOURSE_ env vars, strip the leader, lowercase the key
797864e6 51 /usr/local/bin/ruby -e 'ENV.each{|k,v| puts "#{$1.downcase} = #{v}" if k =~ /^DISCOURSE_(.*)/}' > $conf
1cb802ad 52
b3d252a0 53 - file:
4316c5e5
S
54 path: /etc/runit/1.d/ensure-web-nginx-read
55 chmod: "+x"
56 contents: |
b3d252a0 57 #!/bin/bash
2191df8b 58 mkdir -p /var/log/nginx
b3d252a0
S
59 chgrp -R www-data /var/log/nginx
60 chgrp www-data /var/log/nginx
4316c5e5 61
9fb5f2d3
SS
62 - file:
63 path: /etc/service/unicorn/run
64 chmod: "+x"
65 contents: |
66 #!/bin/bash
67 exec 2>&1
9fb5f2d3
SS
68 # redis
69 # postgres
70 cd $home
6d00b2fa 71 chown -R discourse:www-data /shared/log/rails
56e5e6c2 72 LD_PRELOAD=/usr/lib/libjemalloc.so.1 HOME=/home/discourse USER=discourse exec chpst -u discourse:www-data -U discourse:www-data bundle exec config/unicorn_launcher -E production -c config/unicorn.conf.rb
9fb5f2d3 73
9fb5f2d3
SS
74 - file:
75 path: /etc/service/nginx/run
76 chmod: "+x"
77 contents: |
78 #!/bin/sh
79 exec 2>&1
80 exec /usr/sbin/nginx
81
074f2b6a
S
82 - file:
83 path: /etc/runit/3.d/01-nginx
84 chmod: "+x"
85 contents: |
86 #!/bin/bash
87 sv stop nginx
88
89 - file:
90 path: /etc/runit/3.d/02-unicorn
91 chmod: "+x"
92 contents: |
93 #!/bin/bash
94 sv stop unicorn
95
9fb5f2d3
SS
96 - exec:
97 cd: $home
98 hook: code
99 cmd:
100 - git reset --hard
101 - git clean -f
36c6b609 102 - git remote set-branches --add origin master
d9c1b419
S
103 - git pull
104 - git fetch origin $version
9fb5f2d3 105 - git checkout $version
9fb5f2d3
SS
106 - mkdir -p tmp/pids
107 - mkdir -p tmp/sockets
b150cad1 108 - touch tmp/.gitkeep
e56a65f6 109 - mkdir -p /shared/log/rails
b6227eb0 110 - bash -c "touch -a /shared/log/rails/{production,production_errors,unicorn.stdout,unicorn.stderr}.log"
e56a65f6
MB
111 - bash -c "ln -s /shared/log/rails/{production,production_errors,unicorn.stdout,unicorn.stderr}.log $home/log"
112 - bash -c "mkdir -p /shared/{uploads,backups}"
113 - bash -c "ln -s /shared/{uploads,backups} $home/public"
114 - chown -R discourse:www-data /shared/log/rails /shared/uploads /shared/backups
c4498636 115
9fb5f2d3
SS
116 - exec:
117 cmd:
118 - "cp $home/config/nginx.sample.conf /etc/nginx/conf.d/discourse.conf"
119 - "rm /etc/nginx/sites-enabled/default"
69c891fd 120 - "mkdir -p /var/nginx/cache"
9fb5f2d3
SS
121
122 - replace:
123 filename: /etc/nginx/nginx.conf
124 from: pid /run/nginx.pid;
125 to: daemon off;
126
127 - replace:
128 filename: "/etc/nginx/conf.d/discourse.conf"
129 from: /upstream[^\}]+\}/m
130 to: "upstream discourse {
131 server 127.0.0.1:3000;
132 }"
133
134 - replace:
135 filename: "/etc/nginx/conf.d/discourse.conf"
136 from: /server_name.+$/
137 to: server_name _ ;
138
6e23c775 139 - replace:
140 filename: "/etc/nginx/conf.d/discourse.conf"
141 from: /client_max_body_size.+$/
142 to: client_max_body_size $upload_size ;
143
9e8e16a8
SS
144 - exec:
145 cmd: echo "done configuring web"
146 hook: web_config
147
9fb5f2d3
SS
148 - exec:
149 cd: $home
62418f96 150 hook: web
9fb5f2d3 151 cmd:
e64b0a0b
S
152 # ensure we are on latest bundler
153 - gem update bundler
9fb5f2d3 154 - chown -R discourse $home
70710fa0
EG
155
156 - exec:
157 cd: $home
158 hook: bundle_exec
159 cmd:
e56a65f6
MB
160 - su discourse -c 'bundle install --deployment --verbose --without test --without development'
161 - su discourse -c 'bundle exec rake db:migrate'
162 - su discourse -c 'bundle exec rake assets:precompile'
9fb5f2d3 163
553a4fc9
S
164 - file:
165 path: /usr/local/bin/discourse
166 chmod: +x
167 contents: |
168 #!/bin/bash
8a02b91e 169 (cd /var/www/discourse && RAILS_ENV=production sudo -H -E -u discourse bundle exec script/discourse "$@")
553a4fc9
S
170
171 - file:
172 path: /usr/local/bin/rails
173 chmod: +x
174 contents: |
175 #!/bin/bash
cbfcacda 176 # If they requested a console, load pry instead
d16335a6 177 if [ "$*" == "c" -o "$*" == "console" ]
cbfcacda 178 then
8a02b91e 179 (cd /var/www/discourse && RAILS_ENV=production sudo -H -E -u discourse bundle exec pry -r ./config/environment)
cbfcacda 180 else
8a02b91e 181 (cd /var/www/discourse && RAILS_ENV=production sudo -H -E -u discourse bundle exec script/rails "$@")
cbfcacda 182 fi
553a4fc9
S
183
184 - file:
185 path: /usr/local/bin/rake
186 chmod: +x
187 contents: |
188 #!/bin/bash
8a02b91e 189 (cd /var/www/discourse && RAILS_ENV=production sudo -H -E -u discourse bundle exec bin/rake "$@")
553a4fc9
S
190
191 - file:
192 path: /etc/update-motd.d/10-web
193 chmod: +x
194 contents: |
195 #!/bin/bash
196 echo
197 echo Use: rails, rake or discourse to execute commands in production
198 echo
199
be82e068
S
200 - file:
201 path: /etc/logrotate.d/rails
202 contents: |
203 /shared/log/rails/*.log
204 {
205 rotate 14
206 dateext
207 daily
208 missingok
209 notifempty
210 delaycompress
211 compress
212 postrotate
213 sv 1 unicorn
214 endscript
215 }
55737024 216
5d256035
S
217 - file:
218 path: /etc/logrotate.d/nginx
219 contents: |
220 /var/log/nginx/*.log {
221 daily
222 missingok
223 rotate 14
224 compress
225 delaycompress
226 notifempty
b3d252a0 227 create 0640 www-data www-data
5d256035
S
228 sharedscripts
229 postrotate
230 sv 1 nginx
231 endscript
232 }
55737024 233
25a7de18
S
234 # move state out of the container this fancy is done to support rapid rebuilds of containers,
235 # we store anacron and logrotate state outside the container to ensure its maintained across builds
236 # later move this snipped into an intialization script
be55cb66
S
237 # we also ensure all the symlinks we need to /shared are in place in the correct structure
238 # this allows us to bootstrap on one machine and then run on another
239 - file:
240 path: /etc/runit/1.d/00-ensure-links
241 chmod: +x
242 contents: |
243 #!/bin/bash
244 if [[ ! -L /var/lib/logrotate ]]; then
245 rm -fr /var/lib/logrotate
246 mkdir -p /shared/state/logrotate
247 ln -s /shared/state/logrotate /var/lib/logrotate
248 fi
249 if [[ ! -L /var/spool/anacron ]]; then
250 rm -fr /var/spool/anacron
251 mkdir -p /shared/state/anacron-spool
252 ln -s /shared/state/anacron-spool /var/spool/anacron
253 fi
254 if [[ ! -d /shared/log/rails ]]; then
255 mkdir -p /shared/log/rails
256 chown -R discourse:www-data /shared/log/rails
257 fi
258 if [[ ! -d /shared/uploads ]]; then
259 mkdir -p /shared/uploads
260 chown -R discourse:www-data /shared/uploads
261 fi
262 if [[ ! -d /shared/backups ]]; then
263 mkdir -p /shared/backups
264 chown -R discourse:www-data /shared/backups
265 fi
0c456e8c
EG
266
267 # change login directory to Discourse home
268 - file:
269 path: /root/.bash_profile
270 chmod: 644
271 contents: |
272 cd $home