mirror of
https://github.com/hassio-addons/addon-grocy.git
synced 2025-05-04 11:11:30 +00:00
25 lines
856 B
Text
Executable file
25 lines
856 B
Text
Executable file
#!/command/with-contenv bashio
|
|
# shellcheck shell=bash
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-on: Grocy
|
|
# Configures PHP-FPM for use with Grocy
|
|
# ==============================================================================
|
|
|
|
# Generate Ingress configuration
|
|
bashio::var.json \
|
|
name "ingress" \
|
|
port "^9002" \
|
|
base "$(bashio::addon.ingress_entry)" \
|
|
| tempio \
|
|
-template /etc/php81/templates/php-fpm.gtpl \
|
|
-out /etc/php81/php-fpm.d/ingress.conf
|
|
|
|
# Generate direct access configuration, if enabled.
|
|
if bashio::var.has_value "$(bashio::addon.port 80)"; then
|
|
bashio::var.json \
|
|
name "www" \
|
|
port "^9001" \
|
|
| tempio \
|
|
-template /etc/php81/templates/php-fpm.gtpl \
|
|
-out /etc/php81/php-fpm.d/www.conf
|
|
fi
|