privacy, tos and lazy loading

This commit is contained in:
cupcakearmy
2019-03-24 02:32:01 +01:00
parent c39d15e4ee
commit f6525913b3
13 changed files with 188 additions and 31 deletions

9
nginx.conf Normal file
View File

@@ -0,0 +1,9 @@
server {
listen 80;
server_name _;
location / {
root /usr/share/nginx/html;
try_files $uri /index.html;
}
}