mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 18:02:58 +08:00
Allow use of local. subdomain (#799)
Being able to use --listen local.<domain.name> as a local env instead of 127.0.0.1 example local.comfy.org
This commit is contained in:
parent
7d636c4118
commit
49c47b137c
@ -42,7 +42,7 @@ from comfy.cli_args import args
|
||||
import latent_preview
|
||||
|
||||
|
||||
is_local_mode = args.listen.startswith('127.')
|
||||
is_local_mode = args.listen.startswith('127.') or args.listen.startswith('local.')
|
||||
|
||||
|
||||
def is_allowed_security_level(level):
|
||||
|
||||
Loading…
Reference in New Issue
Block a user