easyctf-2017/ctf.nginx

29 lines
658 B
Plaintext
Raw Normal View History

2015-12-23 06:26:27 +00:00
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
2015-12-24 05:29:04 +00:00
sendfile off;
2015-12-23 06:26:27 +00:00
root /srv/http/ctf;
index index.html index.htm;
server_name localhost;
2015-12-25 03:38:00 +00:00
# location / {
# try_files $uri $uri/ =404;
# }
2015-12-26 05:48:20 +00:00
# Put all the pages here so Angular doesn't fail.
location ~^/(about|login|register|scoreboard|chat|updates|problems|programming|shell|rules)$ {
2015-12-25 03:38:00 +00:00
default_type text/html;
try_files /index.html /index.html;
2015-12-23 06:26:27 +00:00
}
2015-12-23 19:49:31 +00:00
location ~ /api {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8000;
proxy_redirect off;
}
2015-12-26 06:36:55 +00:00
}