From 4b2ce9e9187e1e541f1146969086520e875daeae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Tue, 13 Jun 2023 22:21:56 +0200 Subject: [PATCH] disable TLS on dev --- devfile.yaml | 8 ++++---- src/PublicApi/Properties/launchSettings.json | 2 +- src/Web/Properties/launchSettings.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/devfile.yaml b/devfile.yaml index 7a59b38..bc35e33 100644 --- a/devfile.yaml +++ b/devfile.yaml @@ -9,11 +9,11 @@ components: - exposure: public name: web protocol: https - targetPort: 44315 + targetPort: 5000 - exposure: public name: api protocol: https - targetPort: 5099 + targetPort: 5098 image: registry.redhat.io/devspaces/udi-rhel8:3.5 memoryLimit: 4G cpuLimit: 8000m @@ -32,12 +32,12 @@ commands: component: tools group: kind: run - workingDir: ${PROJECTS_ROOT}/src/Web/ + workingDir: ${PROJECTS_ROOT}/eshoponweb/src/Web/ id: run-web - exec: commandLine: dotnet run component: tools group: kind: run - workingDir: ${PROJECTS_ROOT}/src/PublicApi/ + workingDir: ${PROJECTS_ROOT}/eshoponweb/src/PublicApi/ id: run-api diff --git a/src/PublicApi/Properties/launchSettings.json b/src/PublicApi/Properties/launchSettings.json index c44d516..240d7c5 100644 --- a/src/PublicApi/Properties/launchSettings.json +++ b/src/PublicApi/Properties/launchSettings.json @@ -15,7 +15,7 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }, - "applicationUrl": "https://localhost:5099;http://localhost:5098" + "applicationUrl": "http://localhost:5098" }, "WSL": { "commandName": "WSL2", diff --git a/src/Web/Properties/launchSettings.json b/src/Web/Properties/launchSettings.json index 4dfb1e9..4ad5eb0 100644 --- a/src/Web/Properties/launchSettings.json +++ b/src/Web/Properties/launchSettings.json @@ -24,7 +24,7 @@ "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" + "applicationUrl": "http://localhost:5000" }, "Web - PROD": { "commandName": "Project",