Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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>
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS