WIth dbfilter = ^%d$ and reverse proxy: http://<databasename>.domain.com works great.
<VirtualHost *:80>
ServerName domain.com ServerAlias *.domain.com // Use this if you want dbfillter on subdomain ErrorLog /var/log/openerp/openerp-error.log CustomLog /var/log/openerp/openerp-access.log combined <Proxy *> Order deny,allow Allow from all </Proxy> ProxyRequests Off ProxyPass / http://localhost:8069/
ProxyPassReverse / http://localhost:8069/
ProxyVia On LogLevel warn </VirtualHost>
What I also want is this:
www.website1.com => database: website1
www.website2.com => database: website2
But how to deal with dbfilter and reverse proxy?