docker-images/pluie/alpine-apache/pre-init.d/10-apache.sh

12 lines
287 B
Bash
Raw Normal View History

2016-07-25 02:54:40 +00:00
#!/usr/bin/bash
2016-08-06 00:29:06 +00:00
# @app pluie/alpine-apache
# @author a-Sansara https://git.pluie.org/pluie/docker-images
2016-07-25 02:54:40 +00:00
if [ ! -z "$FIX_OWNERSHIP" ] && [ "$FIX_OWNERSHIP" -eq 1 ]; then
chown -R 1000:apache /app/www
fi
touch /var/log/apache2/error.log
tail -F /var/log/apache2/error.log &