Yeah, I tried the RequiredBinding see below for the config snippets.
Can I get away with no Hostname stanza in the VirtualHost config? e.g. any request on port 8880 is served by /var/www/port8880/drupal_dev?
There is unexpected behaviour as well in that it serves the drupal installer page the very first time, clicking "next" on Drupal's installer forwards to apache2 running on port 80.
Binding {
Port = 8880
BindingID = port8880
Interface = 192.168.15.33
# MaxKeepAlive = 30
# TimeForRequest = 3,20
}
Binding {
Port = 100
BindingID = port100
Interface = 192.168.15.33
MaxKeepAlive = 30
TimeForRequest = 3,20
}
VirtualHost {
Hostname = 192.168.15.33
RequiredBinding = port8880
WebsiteRoot = /var/www/port8880/drupal_dev
StartFile = index.php
AccessLogfile = /var/log/hiawatha/drupal-access.log
ErrorLogfile = /var/log/hiawatha/drupal-error.log
TimeForCGI = 5
UseFastCGI = PHP5
# UseToolkit = banshee
}
VirtualHost {
Hostname = spaceship.local
WebsiteRoot = /var/www/port100
RequiredBinding = port100
ShowIndex = yes
UseFastCGI = PHP5
ExecuteCGI = yes
# StartFile = mythweb.php
Setenv db_server = 192.168.15.33
Setenv db_name = mythconverg
Setenv db_login = mythtv
Setenv db_password = mythtv
Setenv PATH_INFO = /var/www/port100/mythweb
Setenv PATH = /usr/share/mythweb
# Setenv hostname = spaceship.local
Setenv include_path = /usr/share/mythweb
AccessLogfile = /var/log/hiawatha/port100-access.log
ErrorLogfile = /var/log/hiawatha/port100-error.log
}