Files
web_work/docker/apache/vhosts.conf
kirill.khorkov f4f57bd153 fix
2025-12-17 01:24:01 +03:00

27 lines
744 B
Plaintext

<VirtualHost *:80>
ServerName admin
ServerAlias localhost
DocumentRoot /var/www/html
Alias /cite_practica /var/www/html/cite_practica
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html/cite_practica>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
DirectoryIndex cite_mebel.php index.php index.html
</Directory>
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
ErrorLog ${APACHE_LOG_DIR}/cite_practica_error.log
CustomLog ${APACHE_LOG_DIR}/cite_practica_access.log combined
</VirtualHost>