Skip to content

Instantly share code, notes, and snippets.

@yusukebe
Created May 26, 2009 02:45
Show Gist options
  • Select an option

  • Save yusukebe/117860 to your computer and use it in GitHub Desktop.

Select an option

Save yusukebe/117860 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerName myqpp
DocumentRoot /home/www/myapp/root
RewriteEngine On
RewriteRule ^/(static/|favicon.ico) - [L]
RewriteRule ^/(.*)$ http://localhost:8001/$1 [P,L]
ExpiresActive On
<FilesMatch "\.(jpg|gif|png|ico|css|js)$">
ExpiresDefault "access plus 365 days"
</FilesMatch>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment