ansible_etalon_web/files/000-default_fpm7.4.conf
2022-09-04 17:18:06 +02:00

17 lines
499 B
Plaintext

<VirtualHost *:80>
DocumentRoot /var/www/def/public
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log detailed
<Directory /var/www/def/public>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
<Files "*.php">
SetHandler "proxy:unix:/run/php/php7.4-fpm.sock|fcgi://localhost"
</Files>
</VirtualHost>
# vim: set tabstop=4 shiftwidth=4 expandtab smarttab: