15 lines
269 B
Plaintext
15 lines
269 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
root /var/www/localhost/htdocs;
|
|
# Everything is a 404
|
|
location / {
|
|
try_files / /index.html =404;
|
|
}
|
|
|
|
# You may need this to prevent return 404 recursion.
|
|
location = /404.html {
|
|
internal;
|
|
}
|
|
}
|