mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-13 05:45:41 +08:00
Rename “apes-certificate" to "apns-cert" to both make it shorter to type and to be consistent with the "tls-cert" switch
This commit is contained in:
4
serve.go
4
serve.go
@@ -52,8 +52,8 @@ func serve(args []string) error {
|
||||
flagset := flag.NewFlagSet("serve", flag.ExitOnError)
|
||||
var (
|
||||
flServerURL = flagset.String("server-url", "", "public HTTPS url of your server")
|
||||
flAPNSCertPath = flagset.String("apns-certificate", "mdm.p12", "path to APNS certificate")
|
||||
flAPNSKeyPass = flagset.String("apns-password", "secret", "password for your APNS cert file.")
|
||||
flAPNSCertPath = flagset.String("apns-cert", "mdm.p12", "path to APNS certificate")
|
||||
flAPNSKeyPass = flagset.String("apns-password", "secret", "password for your p12 APNS cert file (if using)")
|
||||
flAPNSKeyPath = flagset.String("apns-key", "", "path to key file if using .pem push cert")
|
||||
flTLS = flagset.Bool("tls", true, "use https")
|
||||
flTLSCert = flagset.String("tls-cert", "", "path to TLS certificate")
|
||||
|
||||
Reference in New Issue
Block a user