19 lines
552 B
Plaintext
19 lines
552 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin admin@example.com
|
|
ServerName bubofamily.lavorain.cloud
|
|
ServerAlias bubofamily.lavorain.cloud
|
|
DocumentRoot /var/www/html/bubofamily/public
|
|
|
|
<Directory /var/www/html/bubofamily/public/>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Order allow,deny
|
|
allow from all
|
|
Require all granted
|
|
</Directory>
|
|
|
|
LogLevel debug
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|