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 2929 "remote_mysql_username" : " str?" ,
3030 "remote_mysql_password" : " password?" ,
3131 "remote_mysql_port" : " int?" ,
32+ "proxy_host" : " str?" ,
3233 "log_level" : " list(trace|debug|info|notice|warning|error|fatal)?" ,
3334 "certfile" : " str" ,
3435 "keyfile" : " str" ,
Original file line number Diff line number Diff line change 44# Runs the PHP-FPM daemon
55# ==============================================================================
66export APP_KEY
7+ export APP_URL
78export DB_DATABASE
89export DB_HOST
910export DB_PASSWORD
2627 DB_PORT=$(bashio::services "mysql" "port")
2728fi
2829
30+ if bashio::config.has_value 'proxy_host';then
31+ APP_URL=$(bashio::config "proxy_host")
32+ fi
33+
2934bashio::log.info "Installing/updating Database"
3035php /var/www/bookstack/artisan migrate --force
3136
You can’t perform that action at this time.
0 commit comments