13 lines
299 B
Plaintext
13 lines
299 B
Plaintext
# Replaces the image's 000-default.conf, which is bound to port 80.
|
|
<VirtualHost *:8080>
|
|
DocumentRoot /var/www/html
|
|
|
|
ErrorLog /dev/stderr
|
|
CustomLog /dev/stdout combined
|
|
|
|
<Directory /var/www/html>
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|