mkach/configs/apache.conf
Lain Iwakura c5ad7e8cb4
ok?
2025-07-24 05:58:36 +03:00

17 lines
440 B
ApacheConf

<VirtualHost *:80>
DocumentRoot /var/www/html/mkach
ServerName localhost
AddDefaultCharset UTF-8
<Directory /var/www/html/mkach>
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html/mkach/uploads>
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/mkach_error.log
CustomLog ${APACHE_LOG_DIR}/mkach_access.log combined
</VirtualHost>