Sfoglia il codice sorgente

Update httpsify.go

Mohammed Al Ashaal 9 anni fa
parent
commit
5759692df3
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      httpsify.go

+ 1 - 1
httpsify.go

@@ -22,7 +22,7 @@ const VERSION = "httpsify/v1"
 var (
 	port	*string		=	flag.String("port", "443", "the port that will serve the https requests")
 	cert	*string 	=	flag.String("cert", "./cert.pem", "the cert.pem save-path")
-	key		*string 	=	flag.String("key", "./key.pem", "the key.pem save-path")
+	key	*string 	=	flag.String("key", "./key.pem", "the key.pem save-path")
 	domains	*string 	=	flag.String("domains", "", "a comma separated list of your site(s) domain(s)")
 	backend	*string 	=	flag.String("backend", "http://127.0.0.1:80", "the backend http server that will serve the terminated requests")
 	info 	*string 	=	flag.String("info", "yes", "whether to send information about httpsify or not ^_^")