16 lines
385 B
ApacheConf
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> |