kasperhermansen-blog/conf/nginx.conf

20 lines
260 B
Nginx Configuration File
Raw Normal View History

2022-05-23 08:47:38 +02:00
http {
include mime.types;
sendfile on;
server {
listen 80;
listen [::]:80;
autoindex off;
server_name _;
server_tokens off;
root /usr/share/nginx/html;
gzip_static on;
}
}
events {}