File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
rootfs/etc/services.d/php-fpm Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 29
29
"remote_mysql_username" : " str?" ,
30
30
"remote_mysql_password" : " password?" ,
31
31
"remote_mysql_port" : " int?" ,
32
+ "proxy_host" : " str?" ,
32
33
"log_level" : " list(trace|debug|info|notice|warning|error|fatal)?" ,
33
34
"certfile" : " str" ,
34
35
"keyfile" : " str" ,
Original file line number Diff line number Diff line change 4
4
# Runs the PHP-FPM daemon
5
5
# ==============================================================================
6
6
export APP_KEY
7
+ export APP_URL
7
8
export DB_DATABASE
8
9
export DB_HOST
9
10
export DB_PASSWORD
26
27
DB_PORT=$(bashio::services "mysql" "port")
27
28
fi
28
29
30
+ if bashio::config.has_value 'proxy_host';then
31
+ APP_URL=$(bashio::config "proxy_host")
32
+ fi
33
+
29
34
bashio::log.info "Installing/updating Database"
30
35
php /var/www/bookstack/artisan migrate --force
31
36
You can’t perform that action at this time.
0 commit comments