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

19 lines
427 B
ApacheConf

Listen 65511
<VirtualHost *:65511>
DocumentRoot /var/www/html
ServerName localhost
AddDefaultCharset UTF-8
<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>