Use port 2369 as standard port for OAuth callbacks

This commit is contained in:
Philipp Wolfer 2023-11-20 10:36:13 +01:00
parent c13c9175e3
commit 74f2a3cef7
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@ var authCmd = &cobra.Command{
callbackHost, _ := strings.CutSuffix(viper.GetString("oauth-host"), "/")
if callbackHost == "" {
callbackHost = "127.0.0.1:2222"
callbackHost = "127.0.0.1:2369"
}
callbackPath := "/callback/" + backend