1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-vps-admin.git synced 2025-03-09 15:40:05 +00:00

Fix arguments and change TLS setting

This commit is contained in:
Ycarus (Yannick Chabanois) 2021-02-25 10:44:34 +01:00
parent f9869a3c90
commit 376322a61d

View file

@ -11,6 +11,7 @@ import base64
import secrets
import uuid
import configparser
import argparse
import subprocess
import os
import sys
@ -2431,7 +2432,7 @@ async def list_users(current_user: User = Depends(get_current_user)):
def main(omrport: int, omrhost: str):
LOG.debug("Main OMR-Admin launch")
uvicorn.run(app, host=omrhost, port=omrport, log_level='error', ssl_certfile='/etc/openmptcprouter-vps-admin/cert.pem', ssl_keyfile='/etc/openmptcprouter-vps-admin/key.pem', ssl_version=2, ssl_ciphers='TLSv1.2')
uvicorn.run(app, host=omrhost, port=omrport, log_level='error', ssl_certfile='/etc/openmptcprouter-vps-admin/cert.pem', ssl_keyfile='/etc/openmptcprouter-vps-admin/key.pem', ssl_version=5)
if __name__ == '__main__':
with open('/etc/openmptcprouter-vps-admin/omr-admin-config.json') as f:
@ -2442,7 +2443,7 @@ if __name__ == '__main__':
omrhost = '0.0.0.0'
if 'host' in omr_config_data:
omrhost = omr_config_data["host"]
parser = ArgumentParser(description="OpenMPTCProuter Server API")
parser = argparse.ArgumentParser(description="OpenMPTCProuter Server API")
parser.add_argument("--port", type=int, help="Listening port", default=omrport)
parser.add_argument("--host", type=str, help="Listening host", default=omrhost)
args = parser.parse_args()