easyctf-2017/ctf.nginx

13 lines
204 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;
root /srv/http/ctf;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
}