9 lines
296 B
Bash
9 lines
296 B
Bash
|
#!/bin/sh
|
||
|
/usr/local/bin/gomplate -V -o /etc/php7/php.ini -f /etc/templates/php.ini.tmpl
|
||
|
/usr/local/bin/gomplate -V -o /var/www/app/config.php -f /etc/templates/config.php.tmpl
|
||
|
|
||
|
chown -R nginx:nginx /var/www/app/data
|
||
|
chown -R nginx:nginx /var/www/app/plugins
|
||
|
|
||
|
exec /bin/s6-svscan /etc/services.d
|