add ssl certificate and key file arguments to parser

This commit is contained in:
Quentin Fuxa 2025-04-11 12:20:22 +02:00
parent 29978da301
commit 2def194893

View file

@ -130,6 +130,9 @@ def parse_args():
help="Set the log level",
default="DEBUG",
)
parser.add_argument("--ssl-certfile", type=str, help="Path to the SSL certificate file.", default=None)
parser.add_argument("--ssl-keyfile", type=str, help="Path to the SSL private key file.", default=None)
args = parser.parse_args()