Am 31.08.2012 23:37, schrieb Knud Sørensen:

I just did it like this:

<VirtualHost *:80>

ServerName gtk.d
ProxyRequests On
ProxyPreserveHost On
ProxyVia full
<Proxy *:80>
    Order deny,allow
    Allow from all
</Proxy>

ProxyPass / http://127.0.0.1:4833/
ProxyPassReverse / http://127.0.0.1:4833/

</VirtualHost>

then
a2enmod proxy
a2enmod proxy_http
a2ensite gtkd
service apache2 restart

And it seems to work.

Maybe an virtual host example should be included with vibe.

Knud

Hmm... it turns out it was a long time ago that I've looked at Apache's
mod_proxy. It seems to support HTTP/1.1 beginning with version 1.3...

I agree that a page for this in the documentation is appropriate - then
also including the equivalent nginx setup. A wiki (probably the github
one) also seems like a good place for such things. I'll keep this in mind.