docs/nginx.conf

16 lines
298 B
Nginx Configuration File
Raw Permalink Normal View History

2024-06-24 17:28:30 +02:00
events {}
http {
server {
listen 80 default_server;
2024-06-24 22:18:17 +02:00
server_name _;
root /usr/share/nginx/html;
include /etc/nginx/mime.types;
index index.html;
gzip on;
gzip_disable "msie6";
2024-06-24 17:28:30 +02:00
location = /favicon.ico { access_log off; log_not_found off; }
}
}