diff --git a/Dockerfile b/Dockerfile index 4bd4841..cefaff8 100755 --- a/Dockerfile +++ b/Dockerfile @@ -55,7 +55,7 @@ COPY nginx.dev.conf /etc/nginx/http.d/default.conf COPY start-dev.sh /start-dev.sh RUN chmod +x /start-dev.sh -EXPOSE 3001 80 +EXPOSE 3003 80 CMD ["/start-dev.sh"] diff --git a/nginx.dev.conf b/nginx.dev.conf index d5dcba5..c125de3 100644 --- a/nginx.dev.conf +++ b/nginx.dev.conf @@ -4,7 +4,7 @@ server { # Redirection des requĂȘtes HTTP vers Vite location / { - proxy_pass http://localhost:3001; + proxy_pass http://localhost:3003; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; diff --git a/vite.config.ts b/vite.config.ts index cfd621e..e842295 100755 --- a/vite.config.ts +++ b/vite.config.ts @@ -57,7 +57,7 @@ export default defineConfig({ fs: { cachedChecks: false, }, - port: 3001, + port: 3003, proxy: { '/storage': { target: 'https://demo.4nkweb.com',