Updated Server configuration (markdown)

master
Justin Richer 2014-08-19 17:19:40 -07:00
parent 6298873985
commit 347842e214
1 changed files with 13 additions and 1 deletions

@ -39,4 +39,16 @@ An example of a custom configuration follows:
## server-config.xml
This file defines the `ConfigurationPropertiesBean` that holds basic, static configuration information about the server. Many classes throughout the project inject the `ConfigurationPropertiesBean` in order to get at important values that can't be otherwise discovered, such as the server's `issuer`. By default, `issuer` is set to `http://localhost:8080/openid-connect-server/`, but if the system is to be accessed on anything other than this URL, the value **must** be overridden and changed to the full root URL of the server.
This file defines the `ConfigurationPropertiesBean` that holds basic, static configuration information about the server. Many classes throughout the project inject the `ConfigurationPropertiesBean` in order to get at important values that can't be otherwise discovered, such as the server's `issuer`. By default, `issuer` is set to `http://localhost:8080/openid-connect-server/`, but if the system is to be accessed on anything other than this URL, the value **must** be overridden and changed to the full root URL of the server.
## Endpoints
The OAuth2 and OpenID Connect endpoints are currently set to the following values:
* Authorization endpoint: /authorize
* Token endpoint: /token
* Token introspection: /introspect
* Token revocation: /revoke
* JSON Web Key Set (public key): /jwk
* User info: /userinfo
* Provider configuration: /.well-known/openid-configuration