mirror of
https://github.com/Justuser3310/jetwork.git
synced 2025-01-18 17:08:48 +00:00
Исправление адреса при открытии сайта
This commit is contained in:
parent
d8cd870ce9
commit
29ce4a724b
2
db.py
2
db.py
@ -2,7 +2,7 @@ import os
|
||||
import json
|
||||
|
||||
if not os.path.exists('config.json'):
|
||||
db = {}
|
||||
db = {"our_port": 0000, "ports": [], "domain": "127.0.0.1"}
|
||||
js = json.dumps(db, indent=2)
|
||||
with open("config.json", "w") as outfile:
|
||||
outfile.write(js)
|
||||
|
@ -38,14 +38,16 @@ def update_servers(n):
|
||||
Input('interval-component', 'n_intervals'),
|
||||
Input('search', 'value'))
|
||||
def update_sites(n, s_val):
|
||||
# Домен по умолчанию
|
||||
domain = read()['domain']
|
||||
# Если есть элемент в поиске
|
||||
if s_val:
|
||||
return html.Div([ dcc.Link(children=i, href=f'http://0.0.0.0:8000/{s_val}',
|
||||
return html.Div([ dcc.Link(children=i, href=f'http://{domain}:8000/{s_val}',
|
||||
target='_blank') ], className='sites_elem')
|
||||
|
||||
res = []
|
||||
for i in next(walk('cached/'), (None, None, []))[1]:
|
||||
res.append(html.Div([ dcc.Link(children=i, href=f'http://0.0.0.0:8000/{i}',
|
||||
res.append(html.Div([ dcc.Link(children=i, href=f'http://{domain}:8000/{i}',
|
||||
target='_blank') ], className='sites_elem'))
|
||||
return res
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user