Files
flingue-website/nginx.conf
2025-11-26 09:50:45 +00:00

19 lines
269 B
Nginx Configuration File

events {}
http {
include mime.types;
sendfile on;
server {
listen 80;
listen [::]:80;
resolver 127.0.0.1;
autoindex off;
server_name _;
server_tokens off;
root /app;
gzip_static on;
}
}