-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.com.conf
More file actions
23 lines (21 loc) · 831 Bytes
/
Copy pathtest.com.conf
File metadata and controls
23 lines (21 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
server {
listen 80;
server_name microweb.test.com;
access_log /data/logs/nginx/microweb.test.com.access.log;
location /gateway/ {
proxy_pass http://127.0.0.1:8801;
#Proxy Settings
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /swagger/ {
proxy_pass http://127.0.0.1:8801/swagger/;
#Proxy Settings
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}