-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginx-dev.conf
40 lines (34 loc) · 1.04 KB
/
nginx-dev.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
# dev settings to enable live previews
# access_log off;
expires off;
add_header Cache-Control private;
sendfile off;
}
# proxy api
#
location /api {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host musterroll.handcheque-hq.com;
proxy_set_header X-NginX-Proxy true;
proxy_pass https://musterroll.handcheque-hq.com;
proxy_redirect off;
}
# proxy api
#
location /login {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host musterroll.handcheque-hq.com;
proxy_set_header X-NginX-Proxy true;
proxy_pass https://musterroll.handcheque-hq.com;
proxy_redirect off;
}
}