fix cert names

This commit is contained in:
2024-05-15 21:11:56 +02:00
parent e8962e2915
commit 1163222406
2 changed files with 4 additions and 4 deletions

View File

@@ -18,8 +18,8 @@ import (
)
var (
cert = flag.String("cert", "/etc/gh-backend/ssl/cert.pem", "Specify the path of TLS cert")
key = flag.String("key", "/etc/gh-backend/ssl/key.pem", "Specify the path of TLS key")
cert = flag.String("cert", "/etc/gh-backend/ssl/tls.crt", "Specify the path of TLS cert")
key = flag.String("key", "/etc/gh-backend/ssl/tls.key", "Specify the path of TLS key")
httpsPort = flag.String("https", ":443", "Specify port for http secure hosting(example for format :443)")
httpPort = flag.String("http", ":80", "Specify port for http hosting(example for format :80)")
memgraphURI = flag.String("memgraph", "bolt+ssc://memgraph:7687", "Specify the Memgraph database URI")