Skip to content

Instantly share code, notes, and snippets.

@pgrimaud
Last active March 20, 2023 14:39
Show Gist options
  • Save pgrimaud/67fda283435858081fbf2832daccb86e to your computer and use it in GitHub Desktop.
Save pgrimaud/67fda283435858081fbf2832daccb86e to your computer and use it in GitHub Desktop.
Dockerfile Apache
FROM httpd:2.4
RUN echo 'LoadModule proxy_module modules/mod_proxy.so' >> /usr/local/apache2/conf/httpd.conf
RUN echo 'LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so' >> /usr/local/apache2/conf/httpd.conf
RUN echo 'Include conf/extra/httpd-vhosts.conf' >> /usr/local/apache2/conf/httpd.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment