We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d86e4fb commit 9d7f8e5Copy full SHA for 9d7f8e5
web/nginx.conf
@@ -1,19 +1,9 @@
1
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
- # }
+ listen 3000;
+ server_name localhost;
+ root /usr/share/nginx/html;
+ index index.html index.htm;
+location / {
+ try_files $uri $uri/ /index.html;
+ }
19
}
0 commit comments