22 lines
531 B
Plaintext
22 lines
531 B
Plaintext
#beginConf
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/SITEname_error.log
|
|
#CustomLog ${APACHE_LOG_DIR}/SITEname_custom.log combined
|
|
|
|
DirectoryIndex index.php index.html index.htm
|
|
DocumentRoot /var/www/DOMAINname/html
|
|
|
|
#Include snippets/apa-backendredir.conf
|
|
|
|
<Directory /var/www/DOMAINname/html>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
<FilesMatch \.php$>
|
|
SetHandler "proxy:unix:/var/run/php/phpPHPver-fpm-SITEname.sock|fcgi://localhost"
|
|
</FilesMatch>
|
|
|
|
#endConf |