13 lines
204 B
Text
13 lines
204 B
Text
|
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;
|
||
|
}
|
||
|
}
|