Skip to content

Commit

Permalink
feat: add proxy to app settings (#195)
Browse files Browse the repository at this point in the history
Co-authored-by: jaybeeelsdon <justin@chi.swan.ac.uk>
  • Loading branch information
tekkisse and jaybeeelsdon authored Oct 9, 2023
1 parent b2c7a18 commit f6e49c8
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
5 changes: 4 additions & 1 deletion src/DARE-API/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
"TokenExpiredAddress": "https://localhost:5001/Account/LoginAfterTokenExpired",
"ValidAudiences": "Dare-Control-UI,Dare-Control-API,Dare-Control-Minio",
"Server": "auth2.ukserp.ac.uk",
"Realm": "Dare-Control"
"Realm": "Dare-Control",
"Proxy": "false",
"ProxyAddresURL": "https://proxy:8080",
"BypassProxy": "https://auth2.ukserp.ac.uk"
},
"MinioSettings": {
"Url": "localhost:9000",
Expand Down
11 changes: 9 additions & 2 deletions src/TRE-API/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"RemoteSignOutPath": "/SignOut",
"SignedOutRedirectUri": "/",
"TokenExpiredAddress": "https://localhost:5001/Account/LoginAfterTokenExpired",
"ValidAudiences": "Dare-TRE-API,Dare-TRE-UI"
"ValidAudiences": "Dare-TRE-API,Dare-TRE-UI",
"Proxy": "false",
"ProxyAddresURL": "https://proxy:8080",
"BypassProxy": "https://auth2.ukserp.ac.uk"
},

"SubmissionKeyCloakSettings": {
Expand All @@ -28,7 +31,11 @@
"RemoteSignOutPath": "/SignOut",
"SignedOutRedirectUri": "/",
"TokenExpiredAddress": "https://localhost:5001/Account/LoginAfterTokenExpired",
"ValidAudiences": "Dare-Control-UI,Dare-Control-API,Dare-Control-Minio"
"ValidAudiences": "Dare-Control-UI,Dare-Control-API,Dare-Control-Minio",
"Proxy": "false",
"ProxyAddresURL": "https://proxy:8080",
"BypassProxy": "https://auth2.ukserp.ac.uk"

},
"MinioSettings": {
"Url": "localhost:9000",
Expand Down

0 comments on commit f6e49c8

Please sign in to comment.