Browse Source

disable TLS on dev

main
Nicolas Massé 3 years ago
parent
commit
4b2ce9e918
  1. 8
      devfile.yaml
  2. 2
      src/PublicApi/Properties/launchSettings.json
  3. 2
      src/Web/Properties/launchSettings.json

8
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

2
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",

2
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",

Loading…
Cancel
Save