12 lines
260 B
Plaintext
12 lines
260 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /var/www/public
|
|
|
|
<Directory "/var/www">
|
|
AllowOverride all
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|