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

17 lines
434 B
Plaintext

<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 /var/log/httpd/mkach_error.log
CustomLog /var/log/httpd/mkach_access.log combined
</VirtualHost>