17 lines
389 B
Plaintext
17 lines
389 B
Plaintext
<VirtualHost _default_:80>
|
|
ServerAdmin webmaster@localhost
|
|
ServerName localhost
|
|
|
|
DocumentRoot /var/www/html
|
|
<Directory /var/www/html>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
</Directory>
|
|
|
|
Include /etc/apache2/conf-enabled/renderd.conf
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|