deploiement: reverse proxy nginx pour rediriger les requetes au front ou back suivant url

This commit is contained in:
Mathieu Oriol
2024-09-15 17:21:31 +02:00
parent 0f2d0dc86a
commit 616f42880d
8 changed files with 77 additions and 24 deletions

7
proxy/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
# nginx/Dockerfile
FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80

26
proxy/nginx.conf Normal file
View File

@@ -0,0 +1,26 @@
# nginx/nginx.conf
events {
worker_connections 1024;
}
http {
server {
listen 80;
location / {
proxy_pass http://front:3000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /back/ {
proxy_pass http://back:3001/;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}
}