Skip to content

Commit

Permalink
use correct passed in env vars in nginx template
Browse files Browse the repository at this point in the history
  • Loading branch information
samthomson committed Nov 16, 2022
1 parent a375d25 commit 7dea7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions container-conf/nginx/templates/sites.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ server {
listen 80;
listen 443;

server_name ${DOMAIN_SPA_PROD};
server_name ${DOMAIN_SPA};

location / {
proxy_pass http://app:3000/;
Expand All @@ -13,7 +13,7 @@ server {
listen 80;
listen 443;

server_name ${DOMAIN_API_PROD};
server_name ${DOMAIN_API};

location / {
proxy_pass http://app:4000/;
Expand Down

0 comments on commit 7dea7df

Please sign in to comment.