remove location /api/ from nginx.conf

This commit is contained in:
agatha 2024-04-06 17:57:44 -04:00
parent db4ea90a99
commit 221dbba3be

View File

@ -14,9 +14,5 @@ http {
location / { location / {
try_files $uri $uri/ =404; try_files $uri $uri/ =404;
} }
location /api/ {
proxy_pass http://backend:8000/;
}
} }
} }