Initial commit

This commit is contained in:
Khalil
2026-07-04 10:19:23 +00:00
commit 23baded882
8 changed files with 1272 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://tamagotchi-api:8080/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}