Blocked remote access to auth.json
This commit is contained in:
parent
5d32c208b2
commit
19a03f1d0a
|
|
@ -1,5 +1,6 @@
|
||||||
import json
|
import json
|
||||||
import hashlib
|
import hashlib
|
||||||
|
import modules.constants as constants
|
||||||
|
|
||||||
from os.path import exists
|
from os.path import exists
|
||||||
|
|
||||||
|
|
@ -28,7 +29,7 @@ def load_auth_data(filename=None):
|
||||||
return auth_dict
|
return auth_dict
|
||||||
|
|
||||||
|
|
||||||
auth_dict = load_auth_data('auth.json')
|
auth_dict = load_auth_data(constants.AUTH_FILENAME)
|
||||||
|
|
||||||
auth_enabled = auth_dict != None
|
auth_enabled = auth_dict != None
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
# as in k-diffusion (sampling.py)
|
# as in k-diffusion (sampling.py)
|
||||||
MIN_SEED = 0
|
MIN_SEED = 0
|
||||||
MAX_SEED = 2**63 - 1
|
MAX_SEED = 2**63 - 1
|
||||||
|
|
||||||
|
AUTH_FILENAME = 'auth.json'
|
||||||
|
|
|
||||||
3
webui.py
3
webui.py
|
|
@ -378,5 +378,6 @@ shared.gradio_root.launch(
|
||||||
server_name=args_manager.args.listen,
|
server_name=args_manager.args.listen,
|
||||||
server_port=args_manager.args.port,
|
server_port=args_manager.args.port,
|
||||||
share=args_manager.args.share,
|
share=args_manager.args.share,
|
||||||
auth=check_auth if args_manager.args.share and auth_enabled else None
|
auth=check_auth if args_manager.args.share and auth_enabled else None,
|
||||||
|
blocked_paths=[constants.AUTH_FILENAME]
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue