Files
ts-onlinetime-ranks/frontend/nginx/nginx.conf
Humenius bee6405a9b
Some checks failed
continuous-integration/drone/push Build is failing
Remove "return 200"
2020-06-01 17:49:28 +02:00

29 lines
741 B
Nginx Configuration File

server {
listen 80;
server_name tsotr.humenius.me;
location /api/ {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
rewrite ^/api/?(.*) /$1 break;
proxy_pass https://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;
}
}