Grant all access to server status (temporary grant)
This commit is contained in:
parent
163c585050
commit
5598ecc5f4
|
@ -41,7 +41,9 @@ RUN sed -i "s|ServerRoot /var/www|ServerRoot ${SERVER_ROOT}|" /etc/apache2/httpd
|
|||
sed -i "s|LogLevel .*|LogLevel ${LOG_LEVEL}|" /etc/apache2/httpd.conf && \
|
||||
sed -i "s|#LoadModule rewrite_module|LoadModule rewrite_module|" /etc/apache2/httpd.conf && \
|
||||
sed -i "s|#LoadModule deflate_module|LoadModule deflate_module|" /etc/apache2/httpd.conf && \
|
||||
sed -i "s|#LoadModule expires_module|LoadModule expires_module|" /etc/apache2/httpd.conf
|
||||
sed -i "s|#LoadModule expires_module|LoadModule expires_module|" /etc/apache2/httpd.conf && \
|
||||
sed -i "s|Require host .example.com|#Require host .example.com|" /etc/apache2/conf.d/info.conf && \
|
||||
sed -i "s|Require ip 127|Require all granted|" /etc/apache2/conf.d/info.conf
|
||||
|
||||
# ADD INITIALIZATION SCRIPT
|
||||
ADD ./scripts/apache-entrypoint-alpine /usr/local/bin/entrypoint
|
||||
|
|
Loading…
Reference in New Issue