Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 9720b4c

Browse files
committed
Update JS packages to new versions without know vulnerabilities;
Add HealthChecks to appsettings so SPA can run from VS using services in containers
1 parent 9c37df1 commit 9720b4c

File tree

4 files changed

+16
-11
lines changed

4 files changed

+16
-11
lines changed

src/Web/WebSPA/appsettings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"MarketingUrl": "http://localhost:5110",
44
"CallBackUrl": "http://localhost:5104/",
55
"PurchaseUrl": "http://localhost:5200",
6+
"PurchaseUrlHC": "http://localhost:5202/hc",
7+
"MarketingUrlHC": "http://localhost:5203/hc",
8+
"IdentityUrlHC": "http://localhost:5105/hc",
69
"UseCustomizationData": true,
710
"IsClusterEnv": "False",
811
"ActivateCampaignDetailFunction": false,

src/Web/WebSPA/package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Web/WebSPA/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@
6565
"@types/selenium-webdriver": "3.0.10",
6666
"codelyzer": "~4.4.4",
6767
"handlebars": "~4.0.13",
68+
"lodash": "4.17.11",
69+
"merge": "1.2.1",
6870
"sass-lint": "1.12.1",
6971
"ts-helpers": "1.1.2",
7072
"ts-node": "~7.0.1",

src/Web/WebSPA/web.config

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<configuration>
3-
43
<!--
54
Configure your application settings in appsettings.json. Learn more at https://go.microsoft.com/fwlink/?LinkId=786380
65
-->
7-
86
<system.webServer>
97
<handlers>
10-
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModule" resourceType="Unspecified"/>
8+
<add name="aspNetCore" path="*" verb="*" modules="AspNetCoreModuleV2" resourceType="Unspecified" />
119
</handlers>
12-
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false"/>
10+
<aspNetCore processPath="%LAUNCHER_PATH%" arguments="%LAUNCHER_ARGS%" stdoutLogEnabled="false" stdoutLogFile=".\logs\stdout" forwardWindowsAuthToken="false">
11+
<environmentVariables />
12+
</aspNetCore>
1313
</system.webServer>
14-
</configuration>
14+
</configuration>

0 commit comments

Comments
 (0)