Files
apache2-php/README.md
2017-08-08 11:38:51 +02:00

36 lines
883 B
Markdown

# Use
composer run -d -v /path/sources:/sources -v /path/to/vhost:/etc/apache2/sites-enabled macintoshplus/apache2-php:php72
# Exemple of VHost
```
<VirtualHost *:80>
ServerAdmin admin@domain.tld
DocumentRoot /sources/web
<ifModule mod_headers.c>
Header set Server "DOCKER"
</ifModule>
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /sources/web/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
```