21 lines
484 B
Plaintext
21 lines
484 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot "/sites/site5"
|
|
ServerName example5.com
|
|
ErrorLog logs/site5.log
|
|
|
|
DirectoryIndex index.php
|
|
|
|
<Directory /sites/site5>
|
|
Options +Indexes +FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
<FilesMatch "^\.htaccess$">
|
|
Require all granted
|
|
</FilesMatch>
|
|
<FilesMatch \.php$>
|
|
SetHandler "proxy:unix:/run/php-fpm/www.sock|fcgi://localhost"
|
|
</FilesMatch>
|
|
|
|
</VirtualHost>
|