initial commit

This commit is contained in:
2024-10-24 12:49:01 +02:00
commit 1d06a5c42a
52 changed files with 1810 additions and 0 deletions

12
cfg/default Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_tokens off;
root /var/www/html/default;
index index.html index.htm;
server_name _;
location / {
return 444;
try_files $uri $uri/ =404;
}
}