mr.vercetti.cc/nginx/nginx.conf

13 lines
229 B
Nginx Configuration File
Raw Normal View History

2022-11-27 18:08:07 +01:00
events { }
http {
include /etc/nginx/mime.types;
server_tokens off;
server {
listen 80;
listen [::]:80;
root /usr/share/nginx/html;
error_page 404 /404.html;
default_type application/octet-stream;
}
}