File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,18 +11,20 @@ func TLS(argv []string, cmdr cmd.Commander) error {
1111Valid commands for tls:
1212
1313tls:info view info about an application's TLS settings
14- tls:enable enables the router to enforce https-only requests to an application
15- tls:disable disables the router to enforce https-only requests to an application
14+ tls:force:enable enables the router to enforce https-only requests to an application
15+ tls:force:disable disables the router to enforce https-only requests to an application
16+ tls:auto:enable enables the router to automatic generation of certificates to an application
17+ tls:auto:disable disables the router to automatic generation of certificates to an application
1618
1719Use 'drycc help [command]' to learn more.
1820`
1921
2022 switch argv [0 ] {
2123 case "tls:info" :
2224 return tlsInfo (argv , cmdr )
23- case "tls:enable" :
25+ case "tls:force: enable" :
2426 return tlsEnable (argv , cmdr )
25- case "tls:disable" :
27+ case "tls:force: disable" :
2628 return tlsDisable (argv , cmdr )
2729 case "tls:auto:enable" :
2830 return tlsAutoEnable (argv , cmdr )
You can’t perform that action at this time.
0 commit comments