alexanderander30 commited on
Commit
6ceaa6d
·
verified ·
1 Parent(s): 61b07dc

Delete nginx (1).conf

Browse files
Files changed (1) hide show
  1. nginx (1).conf +0 -23
nginx (1).conf DELETED
@@ -1,23 +0,0 @@
1
- server {
2
- listen 7860 default_server;
3
- listen [::]:7860 default_server;
4
-
5
- root /usr/share/nginx/html;
6
- index index.html index.htm;
7
-
8
- server_name _;
9
- location / {
10
- proxy_pass http://API_URL;
11
- proxy_set_header Host API_URL;
12
- proxy_set_header X-Real-IP $remote_addr;
13
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
14
- #proxy_set_header X-Forwarded-Proto $scheme;
15
- proxy_set_header X-Forwarded-Proto http;
16
- proxy_set_header X-Forwarded-Ssl off;
17
- proxy_set_header X-Url-Scheme http;
18
- proxy_buffering off;
19
- proxy_http_version 1.1;
20
- proxy_set_header Upgrade $http_upgrade;
21
- proxy_set_header Connection "upgrade";
22
- }
23
- }