17 lines
395 B
Plaintext
17 lines
395 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin admin@domain.com
|
|
|
|
DocumentRoot /data/
|
|
<Directory /data/>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
|
|
LogLevel warn
|
|
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost> |