forked from mystiq/dex
*: by default, have dex listen at a non-root url
This commit is contained in:
parent
854b767273
commit
ede6300a84
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ func main() {
|
|||
fs := flag.NewFlagSet("dex-worker", flag.ExitOnError)
|
||||
listen := fs.String("listen", "http://127.0.0.1:5556", "the address that the server will listen on")
|
||||
|
||||
issuer := fs.String("issuer", "http://127.0.0.1:5556", "the issuer's location")
|
||||
issuer := fs.String("issuer", "http://127.0.0.1:5556/dex", "the issuer's location")
|
||||
|
||||
certFile := fs.String("tls-cert-file", "", "the server's certificate file for TLS connection")
|
||||
keyFile := fs.String("tls-key-file", "", "the server's private key file for TLS connection")
|
||||
|
|
|
@ -43,7 +43,7 @@ func main() {
|
|||
certFile := fs.String("tls-cert-file", "", "the TLS cert file. If empty, the app will listen on HTTP")
|
||||
keyFile := fs.String("tls-key-file", "", "the TLS key file. If empty, the app will listen on HTTP")
|
||||
|
||||
discovery := fs.String("discovery", "http://127.0.0.1:5556", "")
|
||||
discovery := fs.String("discovery", "http://127.0.0.1:5556/dex", "")
|
||||
logDebug := fs.Bool("log-debug", false, "log debug-level information")
|
||||
logTimestamps := fs.Bool("log-timestamps", false, "prefix log lines with timestamps")
|
||||
|
||||
|
|
Loading…
Reference in a new issue