blob: e94e13e605dffae71f79621bb9b5a2c3615a1edc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<VirtualHost *:8000>
ServerName localhost
DocumentRoot "${REPOSITORY}/views"
<FilesMatch \.php$>
SetHandler "proxy:unix:${PHP_FPM_SOCKET}|fcgi://localhost/"
</FilesMatch>
RedirectMatch "^/$" /home/index.php
RedirectMatch "^/index.html$" /home/index.php
RedirectMatch "^/index.php$" /home/index.php
</VirtualHost>
|