Update docker-compose

This commit is contained in:
Ari Timonen 2020-10-09 23:20:12 +03:00
parent 49455672e9
commit b25f45d3d3
2 changed files with 2 additions and 2 deletions

View file

@ -82,7 +82,7 @@ server {
location @puma {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://puma;
proxy_pass http://ensl_production;
}
try_files $uri/index.html $uri @puma;

View file

@ -3,7 +3,7 @@
# Use it in production or copy it over
upstream ensl_staging {
server staging:$PUMA_PORT;
server staging:$PUMA_STAGING_PORT;
# server unix:/var/tmp/puma.$RAILS_ENV.sock fail_timeout=0;
}