initial commit

This commit is contained in:
2026-06-16 13:22:27 +02:00
commit 863c46bb05
10 changed files with 852 additions and 0 deletions

14
nginx/default.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
auth_basic "Gune pribatua";
auth_basic_user_file /etc/nginx/.htpasswd;
location / {
try_files $uri $uri/ /index.html;
}
}