mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
Fix bunkerweb-ui.sh script with variables not being exported correctly
This commit is contained in:
parent
5ed595be68
commit
3589057703
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ fi
|
|||
# Function to start the UI
|
||||
start() {
|
||||
echo "Starting UI"
|
||||
export "$(cat /etc/bunkerweb/ui.env)"
|
||||
# shellcheck disable=SC2046
|
||||
export $(cat /etc/bunkerweb/ui.env)
|
||||
python3 -m gunicorn \
|
||||
--config /usr/share/bunkerweb/ui/gunicorn.conf.py \
|
||||
--pythonpath /usr/share/bunkerweb/deps/python/,/usr/share/bunkerweb/ui/ \
|
||||
|
|
|
|||
Loading…
Reference in a new issue