lighttpd (or anything else) through apache2 proxy
1 2 <VirtualHost *:80> 3 ServerAdmin webmaster@inter.net 4 ServerName www.inter.net 5 ProxyRequests Off 6 ProxyPreserveHost On 7 RewriteEngine On 8 RewriteRule ^/(.*) http://127.0.0.1:3000/$1 [P,L] 9 ProxyPassReverse / http://127.0.0.1:3000/ 10 </VirtualHost>