Files
vnctalk-prosody/config/default.conf.template
2025-06-16 12:46:13 +02:00

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