kasperhermansen-blog/conf/nginx.conf
kjuulh 306484b664
All checks were successful
continuous-integration/drone/push Build is passing
Add blog
2022-05-23 08:47:53 +02:00

20 lines
260 B
Nginx Configuration File

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