From 0071cf88c718d5586b3ca4f7aa21ab4b2214f94a Mon Sep 17 00:00:00 2001 From: Jerome Villiseck Date: Tue, 2 Jul 2024 18:43:37 +0200 Subject: [PATCH] =?UTF-8?q?int=C3=A9gration=20continue=20:=20modification?= =?UTF-8?q?=20du=20port=20d'=C3=A9coute=20en=208080?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 7 +++++-- nginx.conf | 10 ++++++++++ 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 nginx.conf diff --git a/Dockerfile b/Dockerfile index 31384bc..d1a9146 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,8 +22,11 @@ FROM nginx:1.21.0-alpine # Copiez les fichiers construits de l'étape précédente COPY --from=build /app/build /usr/share/nginx/html -# Exposez le port 80 pour accéder à l'application -EXPOSE 80 +# Copiez un fichier de configuration Nginx personnalisé +COPY nginx.conf /etc/nginx/conf.d/default.conf + +# Exposez le port 8080 pour accéder à l'application +EXPOSE 8080 # Démarrez Nginx lorsque le conteneur est lancé CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 0000000..f50e61d --- /dev/null +++ b/nginx.conf @@ -0,0 +1,10 @@ +server { + listen 8080; + server_name localhost; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} \ No newline at end of file