Skip to content

Commit

Permalink
Fix default ports for PlatformSettings
Browse files Browse the repository at this point in the history
Since frontend no longer runs access management locally we can remove localtest ports in default appsettings and set these to the correct defaults
  • Loading branch information
Jon Kjetil Øye committed Dec 11, 2024
1 parent b28dc08 commit e7ff25c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,11 @@
"SblBridgeSettings": {
"BaseApiUrl": "https://at22.altinn.cloud/sblbridge/"
},
"PlatformSettings": {
"ApiResourceRegistryEndpoint": "http://localhost:5100/resourceregistry/api/v1/",
"ApiRegisterEndpoint": "http://localhost:5020/register/api/v1/",
"ApiProfileEndpoint": "http://localhost:5030/profile/api/v1/",
"ApiAuthorizationEndpoint": "http://localhost:49723/authorization/api/v1/"
},
"OidcProviders": {
"altinn": {
"Issuer": "https://platform.at22.altinn.cloud/authentication/api/v1/openid/",
"WellKnownConfigEndpoint": "https://platform.at22.altinn.cloud/authentication/api/v1/openid/.well-known/openid-configuration"
},
"maskinporten-ver2": {
"Issuer": "https://ver2.maskinporten.no/",
"WellKnownConfigEndpoint": "https://ver2.maskinporten.no/.well-known/oauth-authorization-server"
},
"maskinporten-test": {
"Issuer": "https://test.maskinporten.no/",
"WellKnownConfigEndpoint": "https://test.maskinporten.no/.well-known/oauth-authorization-server"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
"RightsCacheTimeout": 5
},
"PlatformSettings": {
"ApiAuthenticationEndpoint": "http://localhost:5101/authentication/api/v1/",
"ApiAuthorizationEndpoint": "http://localhost:5101/authorization/api/v1/",
"ApiProfileEndpoint": "http://localhost:5101/profile/api/v1/",
"ApiRegisterEndpoint": "http://localhost:5101/register/api/v1/",
"ApiResourceRegistryEndpoint": "http://localhost:5101/resourceregistry/api/v1/",
"ApiAuthenticationEndpoint": "http://localhost:5040/authentication/api/v1/",
"ApiAuthorizationEndpoint": "http://localhost:5050/authorization/api/v1/",
"ApiProfileEndpoint": "http://localhost:5030/profile/api/v1/",
"ApiRegisterEndpoint": "http://localhost:5020/register/api/v1/",
"ApiResourceRegistryEndpoint": "http://localhost:5100/resourceregistry/api/v1/",
"JwtCookieName": "AltinnStudioRuntime",
"SubscriptionKeyHeaderName": "Ocp-Apim-Subscription-Key"
},
Expand Down

0 comments on commit e7ff25c

Please sign in to comment.