add ssl certificate and key file arguments to parser
This commit is contained in:
parent
29978da301
commit
2def194893
1 changed files with 3 additions and 0 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue