13 lines
No EOL
204 B
Nginx Configuration File
13 lines
No EOL
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;
|
|
}
|
|
} |