Files
monica/scripts/docker/000-default.conf
T
2019-10-25 19:52:12 +02:00

23 lines
637 B
ApacheConf

<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/monica/public
<Directory /var/www/monica/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<IfModule mod_proxy_fcgi>
ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:9000/var/www/monica/public/$1
DirectoryIndex index.php
</IfModule>
<IfModule log_config_module>
ErrorLog /proc/1/fd/2
CustomLog /proc/1/fd/1 combined
</IfModule>
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet