Change port for TLS connection.

This commit is contained in:
Marco 2023-06-06 23:02:46 +02:00
parent b6bb75376d
commit 5f8342b4c5

View File

@ -41,7 +41,7 @@ func main() {
gin.SetMode(gin.ReleaseMode) gin.SetMode(gin.ReleaseMode)
log.Println("Starting in release mode") log.Println("Starting in release mode")
log.Println("Starting service with TLS") log.Println("Starting service with TLS")
log.Fatal(autotls.Run(router, "chess.sw-gross.de")) log.Fatal(autotls.Run(router, "chess.sw-gross.de:9000"))
} }
} }