mkach/apache.conf
Lain Iwakura 0e9d6c681f
gg
2025-07-24 05:17:13 +03:00

16 lines
385 B
ApacheConf

<VirtualHost *:65511>
DocumentRoot /var/www/html
ServerName localhost
<Directory /var/www/html>
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html/uploads>
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>