initial release (nginx+php ok)

This commit is contained in:
2024-12-13 10:00:45 +01:00
commit fd3195a8b2
12 changed files with 127 additions and 0 deletions

21
rootfs/app/entrypoint.sh Executable file
View File

@@ -0,0 +1,21 @@
#!/bin/sh
WEBROOT=/www
PHP=${PHP:-none}
USERNAME=${USERNAME:-theuser}
adduser -DH -h "${WEBROOT}" -G "nginx" -u "1000" "${USERNAME}"
chown "${USERNAME}:nginx" "${WEBROOT}" -R
find "${WEBROOT}" -type d -exec chmod 0755 {} \;
find "${WEBROOT}" -type f -exec chmod 0644 {} \;
envsubst < /app/nginx.conf.tpl > /etc/nginx/http.d/default.conf
case "${PHP}" in
"php84") /usr/sbin/php-fpm84 -D ;;
"php83") /usr/sbin/php-fpm83 -D ;;
"php82") /usr/sbin/php-fpm82 -D ;;
*) ;;
esac
nginx