NameVirtualHost *
<VirtualHost *>
ServerAdmin webmaster@localhost
ServerName bbcs # instead of example, intranet

# commented out because of the permission-error (may be not this section's fault)
# DocumentRoot /var/www/
# <Directory />
# Options FollowSymLinks
# AllowOverride None
# </Directory>
# <Directory /var/www/>
# Options Indexes FollowSymLinks MultiViews
# AllowOverride None
# Order allow,deny
# allow from all
# This directive allows us to have apache2's default start page
# in /apache2-default/, but still have / go to the right place
# Commented out for Ubuntu
# Redirect into Twiki - hw 12.4.06
#RedirectMatch ^/$ /twiki/bin/view
# </Directory>

ErrorLog /var/log/apache2/error.log

# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn

CustomLog /var/log/apache2/access.log combined
ServerSignature On

### Proxy Configuration
ProxyPass / http://localhost:8080
ProxyPassReverse / http://localhost:8080

</VirtualHost>