commit
de657829fd
|
|
@ -19,8 +19,8 @@ Flask-SQLAlchemy>=2.5.1
|
|||
#Flask-Migrate==4.*
|
||||
#Flask-Security-Too==5.5.*; python_version >= '3.10'
|
||||
#Flask-Security-Too==5.4.*; python_version <= '3.9'
|
||||
pyOpenSSL==26.0.0
|
||||
cryptography>=46.0.7
|
||||
pyOpenSSL>=26.0.0
|
||||
cryptography>=48.0.1
|
||||
configparser==5.2.0
|
||||
python-engineio>=4.3.2
|
||||
python-socketio>=4.2.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
cryptography==36.0.1
|
||||
cryptography>=48.0.1
|
||||
pyOpenSSL>=26.0.0
|
||||
flask==2.0.3
|
||||
pyOpenSSL==22.0.0
|
||||
requests==2.27.1
|
||||
gevent==22.10.2
|
||||
gunicorn==21.2.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
cryptography==36.0.1
|
||||
cryptography>=48.0.1
|
||||
pyOpenSSL>=26.0.0
|
||||
flask==2.0.3
|
||||
pyOpenSSL==22.0.0
|
||||
requests==2.27.1
|
||||
gevent==22.10.2
|
||||
gunicorn==21.2.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
cryptography==36.0.1
|
||||
cryptography>=48.0.1
|
||||
pyOpenSSL>=26.0.0
|
||||
flask==2.0.3
|
||||
pyOpenSSL==22.0.0
|
||||
requests==2.27.1
|
||||
gevent==22.10.2
|
||||
gunicorn==21.2.0
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
cryptography>=46.0.7
|
||||
cryptography>=48.0.1
|
||||
pyOpenSSL>=26.0.0
|
||||
flask==2.0.3
|
||||
pyOpenSSL==22.0.0
|
||||
requests==2.27.1
|
||||
gevent==22.10.2
|
||||
gunicorn==21.2.0
|
||||
|
|
|
|||
|
|
@ -930,6 +930,9 @@ def isSupportHttp3(version):
|
|||
return False
|
||||
|
||||
def isVhostHasReuseport(version):
|
||||
if not isSupportHttp3(version):
|
||||
return False
|
||||
|
||||
vhost_dir = getServerDir() + '/web_conf/nginx/vhost'
|
||||
if not os.path.exists(vhost_dir):
|
||||
return False
|
||||
|
|
|
|||
Loading…
Reference in New Issue