12 lines
329 B
Plaintext
12 lines
329 B
Plaintext
<VirtualHost *:80>
|
|
ServerName example.local
|
|
DocumentRoot /var/www/html/example
|
|
|
|
<Directory /var/www/html/example>
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/example_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/example_access.log combined
|
|
</VirtualHost> |