docker-images/pluie/alpine-apache/install.d/50-fix-apache.sh

15 lines
673 B
Bash
Raw Normal View History

2016-07-25 02:54:40 +00:00
#!/bin/bash
# pluie/docker-images - a-Sansara (https://github.com/a-sansara)
mkdir -p /app/www
chown -R 1000:apache /app/www
chmod -R 755 /scripts/pre-init.d
2016-07-29 15:09:39 +00:00
mkdir -p /run/apache2
chown apache:apache /run/apache2
2016-07-25 02:54:40 +00:00
sed -i 's#^DocumentRoot ".*#DocumentRoot "/app/www"#g' /etc/apache2/httpd.conf
sed -i 's#AllowOverride none#AllowOverride All#' /etc/apache2/httpd.conf
2016-07-29 15:09:39 +00:00
sed -i 's#\#LoadModule rewrite_module modules/mod_rewrite.so#LoadModule rewrite_module modules/mod_rewrite.so#' /etc/apache2/httpd.conf
2016-07-29 11:51:56 +00:00
sed -ir 's/expose_php = On/expose_php = Off/' /etc/php5/php.ini
2016-07-25 02:54:40 +00:00
echo -e "\nIncludeOptional /app/vhost" >> /etc/apache2/httpd.conf
2016-07-28 13:56:30 +00:00
rm -f /scripts/pre-init.d/50-example.sh