From 347842e214ac351e722fbee29c3681c27a365057 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Tue, 19 Aug 2014 17:19:40 -0700 Subject: [PATCH] Updated Server configuration (markdown) --- Server-configuration.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Server-configuration.md b/Server-configuration.md index e25dddb..45ae73d 100644 --- a/Server-configuration.md +++ b/Server-configuration.md @@ -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. \ No newline at end of file +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 \ No newline at end of file