easyctf-2017/ctf.nginx
2015-12-23 00:26:27 -06:00

13 lines
204 B
Nginx Configuration File

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;
}
}