chore: remove unused env variables

This commit is contained in:
CyberL1 2025-01-09 13:26:55 -05:00
parent 84f0d2080a
commit a84091983c
2 changed files with 2 additions and 5 deletions

View File

@ -1,5 +1,2 @@
PORT=3000 PORT=3000
HOST="0.0.0.0" HOST="0.0.0.0"
PROXY_DOMAIN="localhost"
PROXY_PORT=3001

View File

@ -2,7 +2,7 @@ server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
server_name code-containers.localhost; server_name localhost;
location / { location / {
proxy_pass http://127.0.0.1:3000; proxy_pass http://127.0.0.1:3000;
@ -13,7 +13,7 @@ server {
listen 80; listen 80;
listen [::]:80; listen [::]:80;
server_name "~^(port-(?<port>.*)\.)?(?<container>.*)\.code-containers.localhost"; server_name "~^(port-(?<port>.*)\.)?(?<container>.*)\.localhost";
location / { location / {
if ($port = "") { if ($port = "") {