17 lines
499 B
Plaintext
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:
|