Skip to content

Commit 9d7f8e5

Browse files
committed
cleanup nginx fix removal
1 parent d86e4fb commit 9d7f8e5

File tree

1 file changed

+7
-17
lines changed

1 file changed

+7
-17
lines changed

web/nginx.conf

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
server {
2-
listen 3000;
3-
server_name localhost;
4-
root /usr/share/nginx/html;
5-
index index.html index.htm;
6-
7-
location / {
8-
try_files $uri $uri/ /index.html;
9-
}
10-
11-
# Proxy API requests to the Go API
12-
# location /api/ {
13-
# proxy_pass http://api-http-sms.zorvia.dev; # Use Docker service name and port
14-
# proxy_http_version 1.1;
15-
# proxy_set_header Host $host;
16-
# proxy_set_header X-Real-IP $remote_addr;
17-
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
18-
# }
2+
listen 3000;
3+
server_name localhost;
4+
root /usr/share/nginx/html;
5+
index index.html index.htm;
6+
location / {
7+
try_files $uri $uri/ /index.html;
8+
}
199
}

0 commit comments

Comments
 (0)