From b87f388c869f380a626dc76b86e623496853d6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anne=20L=27H=C3=B4te?= Date: Thu, 18 Jan 2024 18:38:04 +0100 Subject: [PATCH] Set default Secured WebSocket to 443 --- Dockerfile | 2 +- client/.env.staging | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b57682d2..57b832f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,4 @@ COPY package*.json ./ COPY server ./server RUN npm ci --silent CMD ["npm", "run", "-w", "server", "start"] -EXPOSE 3000 3001 \ No newline at end of file +EXPOSE 3000 443 \ No newline at end of file diff --git a/client/.env.staging b/client/.env.staging index a7931a3a..2bdab678 100644 --- a/client/.env.staging +++ b/client/.env.staging @@ -1,3 +1,3 @@ VITE_HEADER_TAG=staging VITE_WS_HOST=wss://works-finder.staging.dataesr.ovh -VITE_WS_PORT=3001 \ No newline at end of file +VITE_WS_PORT=443 \ No newline at end of file