15 lines
391 B
Plaintext
15 lines
391 B
Plaintext
<VirtualHost *:80>
|
||
# ServerName www.example.com
|
||
|
||
ServerAdmin webmaster@localhost
|
||
# DocumentRoot /var/www/html
|
||
|
||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
||
ProxyRequests Off
|
||
ProxyPreserveHost On
|
||
ProxyPass / http://localhost:5000/
|
||
ProxyPassReverse / http://localhost:5000/
|
||
</VirtualHost>
|