undo example testing changes

This commit is contained in:
Tim Möhlmann 2023-08-18 17:39:03 +02:00
parent 508f6d719c
commit ee72eb00c7
3 changed files with 5 additions and 5 deletions

View file

@ -40,7 +40,7 @@ func main() {
port := "9998" port := "9998"
issuers := make([]string, len(hostnames)) issuers := make([]string, len(hostnames))
for i, hostname := range hostnames { for i, hostname := range hostnames {
issuers[i] = fmt.Sprintf("http://%s:%s/oidc/", hostname, port) issuers[i] = fmt.Sprintf("http://%s:%s/", hostname, port)
} }
//the OpenID Provider requires a 32-byte key for (token) encryption //the OpenID Provider requires a 32-byte key for (token) encryption
@ -84,7 +84,7 @@ func main() {
//if your issuer ends with a path (e.g. http://localhost:9998/custom/path/), //if your issuer ends with a path (e.g. http://localhost:9998/custom/path/),
//then you would have to set the path prefix (/custom/path/): //then you would have to set the path prefix (/custom/path/):
//router.PathPrefix("/custom/path/").Handler(http.StripPrefix("/custom/path", provider.HttpHandler())) //router.PathPrefix("/custom/path/").Handler(http.StripPrefix("/custom/path", provider.HttpHandler()))
router.PathPrefix("/oidc/").Handler(http.StripPrefix("/oidc", provider.HttpHandler())) router.PathPrefix("/").Handler(provider.HttpHandler())
server := &http.Server{ server := &http.Server{
Addr: ":" + port, Addr: ":" + port,
@ -125,7 +125,7 @@ func newDynamicOP(ctx context.Context, storage op.Storage, key [32]byte) (*op.Pr
//this example has only static texts (in English), so we'll set the here accordingly //this example has only static texts (in English), so we'll set the here accordingly
SupportedUILocales: []language.Tag{language.English}, SupportedUILocales: []language.Tag{language.English},
} }
handler, err := op.NewDynamicOpenIDProvider("/oidc/", config, storage, handler, err := op.NewDynamicOpenIDProvider("/", config, storage,
//we must explicitly allow the use of the http issuer //we must explicitly allow the use of the http issuer
op.WithAllowInsecure(), op.WithAllowInsecure(),
//as an example on how to customize an endpoint this will change the authorization_endpoint from /authorize to /auth //as an example on how to customize an endpoint this will change the authorization_endpoint from /authorize to /auth

View file

@ -72,7 +72,7 @@ func SetupServer(issuer string, storage Storage, extraOptions ...op.Option) *mux
// //
// if your issuer ends with a path (e.g. http://localhost:9998/custom/path/), // if your issuer ends with a path (e.g. http://localhost:9998/custom/path/),
// then you would have to set the path prefix (/custom/path/) // then you would have to set the path prefix (/custom/path/)
router.PathPrefix("/oidc/").Handler(http.StripPrefix("/oidc", provider.HttpHandler())) router.PathPrefix("/").Handler(provider.HttpHandler())
return router return router
} }

View file

@ -13,7 +13,7 @@ func main() {
//we will run on :9998 //we will run on :9998
port := "9998" port := "9998"
//which gives us the issuer: http://localhost:9998/ //which gives us the issuer: http://localhost:9998/
issuer := fmt.Sprintf("http://localhost:%s/oidc/", port) issuer := fmt.Sprintf("http://localhost:%s/", port)
// the OpenIDProvider interface needs a Storage interface handling various checks and state manipulations // the OpenIDProvider interface needs a Storage interface handling various checks and state manipulations
// this might be the layer for accessing your database // this might be the layer for accessing your database