Merge pull request #2 from OlaketalAmigo/hexplor_branch

Hexplor branch
frontend fonctionnel ajouté au projet
This commit is contained in:
H3XploR
2026-01-09 14:25:50 +01:00
committed by GitHub
4 changed files with 33 additions and 19 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
FROM nginx:20-alpine
FROM nginx:alpine
COPY src /usr/share/nginx/html
COPY nginx.conf /etc/nginx/nginx.conf
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
+18
View File
@@ -0,0 +1,18 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# Frontend
location / {
try_files $uri /index.html;
}
# Backend API
location /api/ {
proxy_pass http://backend:3001/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}