mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-22 15:40:22 +00:00
admin_domain with http
This commit is contained in:
parent
d6423e8726
commit
dddb22c68f
2 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ COPY static ./static
|
|||
COPY requirements.txt main.py ./
|
||||
RUN apt update
|
||||
|
||||
# Install supervisord
|
||||
# Install supervisords
|
||||
RUN apt install -y supervisor
|
||||
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||
COPY config/cmd.sh /cmd.sh
|
||||
|
|
|
@ -376,7 +376,7 @@ def get_apps_from_compose():
|
|||
admin_path =""
|
||||
|
||||
if default_domain != "" and admin_path != "":
|
||||
admin_domain_url = default_domain + admin_path
|
||||
admin_domain_url = "http://" + default_domain + admin_path
|
||||
except IndexError:
|
||||
pass
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue