From 52172e74d10671e3097b17c242080fda15f578f7 Mon Sep 17 00:00:00 2001 From: Daan Asscheman Date: Mon, 16 Sep 2024 17:39:25 +0200 Subject: [PATCH] testing 15 --- openshift/config/08_sample-svc.yaml | 4 ---- openshift/vhost.conf | 5 +++++ vite.config.js | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/openshift/config/08_sample-svc.yaml b/openshift/config/08_sample-svc.yaml index abfcc13..b1a686f 100644 --- a/openshift/config/08_sample-svc.yaml +++ b/openshift/config/08_sample-svc.yaml @@ -9,9 +9,5 @@ spec: ports: - port: 9000 targetPort: 9000 - - port: 7050 - targetPort: 7050 - - port: 5173 - targetPort: 5173 selector: app: sample-app diff --git a/openshift/vhost.conf b/openshift/vhost.conf index 87b8671..23ee255 100644 --- a/openshift/vhost.conf +++ b/openshift/vhost.conf @@ -1,5 +1,10 @@ server { listen 8080; + listen 80; + listen [::]:80; + listen 443 ssl; + listen [::]:443 ssl; + server_name app.openshift.fss.uu.nl; index index.php index.html; diff --git a/vite.config.js b/vite.config.js index ffb56c1..8f5d603 100644 --- a/vite.config.js +++ b/vite.config.js @@ -36,7 +36,7 @@ export default defineConfig({ } }, server: { - port: 7050, + port: 8080, hmr: { host: 'localhost', },