forked from 0x2620/pandora
better apache configuration
This commit is contained in:
parent
d34b2e4860
commit
6b50ce97a1
1 changed files with 10 additions and 7 deletions
|
@ -17,20 +17,23 @@
|
|||
Order deny,allow
|
||||
Allow from all
|
||||
</Proxy>
|
||||
ProxyPass /static !
|
||||
ProxyPass /favicon.ico !
|
||||
ProxyPass /robots.txt !
|
||||
ProxyPass /admin/media !
|
||||
ProxyPass /data !
|
||||
ProxyPass /.bzr !
|
||||
|
||||
|
||||
Alias /.bzr __PREFIX__/.bzr
|
||||
Alias /static __PREFIX__/static
|
||||
Alias /favicon.ico __PREFIX__/static/favicon.ico
|
||||
Alias /data __PREFIX__/data
|
||||
Alias /admin/media __PREFIX__/src/django/django/contrib/admin/media
|
||||
Alias /static/js/jquery.js __PREFIX__/src/django/django/contrib/admin/media/js/jquery.min.js
|
||||
|
||||
RewriteEngine on
|
||||
RewriteCond %{REQUEST_URI} !^/.bzr
|
||||
RewriteCond %{REQUEST_URI} !^/static
|
||||
RewriteCond %{REQUEST_URI} !^/data
|
||||
RewriteCond %{REQUEST_URI} !^/admin/media
|
||||
RewriteRule ^/(.*) http://127.0.0.1:2620/$1 [P]
|
||||
ProxyPreserveHost On
|
||||
ProxyPass / http://127.0.0.1:2620/
|
||||
ProxyPassReverse / http://127.0.0.1:2620/
|
||||
|
||||
ServerSignature Off
|
||||
</VirtualHost>
|
||||
|
|
Loading…
Reference in a new issue