Add blog
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-05-23 08:47:38 +02:00
parent 63fbdeb01d
commit 306484b664
6 changed files with 40 additions and 13 deletions

19
conf/nginx.conf Normal file
View File

@@ -0,0 +1,19 @@
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 {}