Integre l'application d'Ethan sous /ethan

This commit is contained in:
2026-04-12 17:17:39 +02:00
parent df1d7cbd63
commit a3d3bd18a9
14 changed files with 10211 additions and 7 deletions

View File

@@ -5,6 +5,14 @@ server {
root /usr/share/nginx/html;
index index.html;
location = /ethan {
return 301 $scheme://$http_host/ethan/;
}
location /ethan/ {
try_files $uri $uri/ /ethan/index.html;
}
location / {
try_files $uri $uri/ /index.html;
}