Use passenger start --ssl --ssl-certificate config/localhost.crt --ssl-certificate-key config/localhost.key --ssl-port 3001. Open up https://localhost:3001. Add security exceptions from the advance settings of the browser. You can also use http (unsecure connection) on the port number 3000...
GOVC_INSECURE: Disable certificate verification. This option sets Go's tls.Config.InsecureSkipVerify flag and is false by default. Quoting https://golang.org/pkg/crypto/tls/#Config: InsecureSkipVerify controls whether a client verifies the server's certificate chain and host name. If InsecureSki...