fix(directory): 🐛 fix port config

This commit is contained in:
Collin M. Barrett 2020-09-07 11:05:45 -05:00
parent bfc7665b5e
commit ac1a316ad8
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ server {
location ^~ /api {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://directory-api:5000;
proxy_pass http://directory-api:80;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;

View file

@ -11,7 +11,7 @@ server {
location ^~ /api {
rewrite ^/api/(.*)$ /$1 break;
proxy_pass http://directory-api:5000;
proxy_pass http://directory-api:80;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection keep-alive;