Skip to content
Snippets Groups Projects
Commit 6b8c2b27 authored by David Hoese's avatar David Hoese
Browse files

Add fcgid daemon to mapserver container just in case

parent 97051f1f
No related branches found
No related tags found
No related merge requests found
......@@ -66,12 +66,12 @@ ENV APACHE_SERVER_NAME localhost
# install httpd runtime dependencies
# https://httpd.apache.org/docs/2.4/install.html#requirements
RUN apt-get -y install apache2 && \
RUN apt-get -y install apache2 libapache2-mod-fcgid && \
ls /etc/apache2/mods-available && \
ls /etc/apache2/mods-enabled && \
apt-get -y install libapache2-mod-php7.3 php7.3-common php7.3-cli php7.3-fpm php7.3 && \
a2enmod actions proxy_fcgi setenvif cgi && \
a2enconf php7.3-fpm && \
a2enmod actions proxy_fcgi setenvif cgi fcgid && \
a2enconf php7.3-fpm serve-cgi-bin && \
apt-get -y clean && \
rm -rf /var/lib/apt/lists/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment