Files
ts-onlinetime-ranks/frontend/nginx/nginx.conf
Humenius ca73a86292
Some checks failed
continuous-integration/drone/push Build is failing
Rename $http_host to $host
2020-06-01 17:33:37 +02:00

26 lines
603 B
Nginx Configuration File

server {
listen 80;
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 $host;
proxy_set_header X-NginX-Proxy true;
rewrite ^/api/?(.*) /$1 break;
proxy_pass http://api.tsotr.humenius.me/;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}