This image(s) is part of the Docksal image library.
- apache2.4 (based on httpd:2.4.67-alpine)
- SSL enabled (self-signed cert)
- PHP handling via FastCGI (
mod_proxy_fcgi) - HTTP Basic Authentication
- Support for configuration overrides
Apache DocumentRoot for the default virtual host can be set via APACHE_DOCUMENTROOTenvironment variable
(defaults to /var/www/docroot).
These images are set up to work with a FastCGI server and will not start without one.
The FastCGI endpoint can be set via APACHE_FCGI_HOST_PORT environment variable (defaults to cli:9000).
Use APACHE_BASIC_AUTH_USER and APACHE_BASIC_AUTH_PASS environment variables to set username and password.
Example with Docker Compose
...
environment:
- APACHE_BASIC_AUTH_USER=user
- APACHE_BASIC_AUTH_PASS=password
...Configuration overrides can be added to a Docksal project codebase.
Use .docksal/etc/apache/httpd-vhost-overrides.conf to override the default virtual host configuration:
DirectoryIndex index2.html
Use .docksal/etc/apache/httpd-vhosts.conf to define additional virtual hosts:
<VirtualHost *:80>
ServerName docs.docksal.site
ProxyPass / http://docs.docksal.io/
ProxyPassReverse / http://docs.docksal.io/
</VirtualHost>