blob: 46fa9c196711d3197a02b64dd1d3ec403bc29bde (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<VirtualHost *:8000>
ServerName localhost
DocumentRoot "${REPOSITORY}/views"
<FilesMatch \.php$>
SetHandler "proxy:unix:${PHP_FPM_SOCKET}|fcgi://localhost/"
</FilesMatch>
</VirtualHost>
|