The Identityserver4 end point is not using the port address of the .well-known/openid-configuration URL http://example.org:7000/.well-known/openid-configuration
"issuer": "http://example.org:7000",
"jwks_uri": "http://example.org/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://example.org/connect/authorize",
"token_endpoint": "http://example.org/connect/token",
"userinfo_endpoint": "http://example.org/connect/userinfo",
"end_session_endpoint": "http://example.org/connect/endsession",
"check_session_iframe": "http://example.org/connect/checksession",
"revocation_endpoint": "http://example.org/connect/revocation",
"introspection_endpoint": "http://example.org/connect/introspect",
"device_authorization_endpoint": "http://example.org/connect/deviceauthorization"
How can i set the endpoints to attach the port address like this below
"issuer": "http://example.org:7000",
"jwks_uri": "http://example.org:7000/.well-known/openid-configuration/jwks",
"authorization_endpoint": "http://example.org:7000/connect/authorize",
"token_endpoint": "http://example.org:7000/connect/token",
"userinfo_endpoint": "http://example.org:7000/connect/userinfo",
"end_session_endpoint": "http://example.org:7000/connect/endsession",
"check_session_iframe": "http://example.org:7000/connect/checksession",
"revocation_endpoint": "http://example.org:7000/connect/rev`enter code here`ocation"
"introspection_endpoint": "http://example.org:7000/connect/introspect",
"device_authorization_endpoint": "http://example.org:7000/connect/deviceauthorization"
I resolve the domain by ensuring the domain has no port address but port 80.