forked from 0x2620/pandora
31 lines
866 B
Text
31 lines
866 B
Text
<VirtualHost *:80>
|
|
|
|
<Location />
|
|
Options -Indexes
|
|
</Location>
|
|
<Directory __PREFIX__>
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
|
|
<Location />
|
|
XSendFile on
|
|
XSendFileAllowAbove on
|
|
</Location>
|
|
|
|
Alias /.bzr __PREFIX__/.bzr
|
|
Alias /static __PREFIX__/pandora/static
|
|
Alias /favicon.ico __PREFIX__/pandora/static/favicon.ico
|
|
Alias /media __PREFIX__/pandora/media
|
|
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
|
|
|
|
WSGIScriptAlias / __PREFIX__/wsgi/django.wsgi
|
|
|
|
WSGIDaemonProcess pandora user=pandora group=pandora threads=25 python-path=__PREFIX__/lib/python2.6/site-packages/
|
|
WSGIProcessGroup pandora
|
|
|
|
ServerSignature Off
|
|
</VirtualHost>
|
|
|
|
|