#!/command/with-contenv bash mkdir -p /app/www if [ ! -f /config/lighttpd.conf ]; then echo "Keine Konfiguration gefunden, kopiere Standard..." cp /defaults/lighttpd.conf /config/lighttpd.conf fi if [ ! -f /app/www/index.html ]; then echo "
Lighttpd auf Alpine.
" > /app/www/index.html fi chown -R abc:users /config chown -R abc:users /app/www