fork: move from guezoloic repo

This commit is contained in:
2026-01-24 13:29:26 +01:00
parent 75ebf27385
commit e7c093935e
31 changed files with 5377 additions and 0 deletions

22
nginx.conf Normal file
View File

@@ -0,0 +1,22 @@
server {
listen 80;
server_name www.guezoloic.com;
return 301 $scheme://guezoloic.com;
}
server {
listen 80;
server_name guezoloic.com;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
location /data/ {
alias /usr/share/nginx/html/data/;
# autoindex on;
}
}