pandora/etc/apache2/pandora.conf

57 lines
1.3 KiB
Text
Raw Normal View History

2009-12-31 16:04:32 +01:00
<VirtualHost *:80>
#ServerName pandora.YOURDOMAIN.COM
2009-12-31 16:04:32 +01:00
<Location />
Options -Indexes
</Location>
<Directory /srv/pandora>
2009-12-31 16:04:32 +01:00
Order deny,allow
Allow from all
</Directory>
<Location />
XSendFile on
XSendFilePath /srv/pandora
</Location>
2012-02-24 02:12:26 +05:30
AddType video/webm webm
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
2012-02-22 22:04:41 +05:30
ProxyPass /static !
ProxyPass /favicon.ico !
ProxyPass /data !
ProxyPass /.bzr !
RequestHeader unset Proxy
Alias /.bzr /srv/pandora/.bzr
Alias /static /srv/pandora/static
Alias /favicon.ico /srv/pandora/static/favicon.ico
Alias /data /srv/pandora/data
2012-02-22 22:04:41 +05:30
ProxyPreserveHost On
ProxyPass /api/ws/ ws://127.0.0.1:2622/ retry=0
2012-02-22 22:04:41 +05:30
ProxyPass / http://127.0.0.1:2620/
ProxyPassReverse / http://127.0.0.1:2620/
2009-12-31 16:04:32 +01:00
2012-04-19 18:06:38 +02:00
LogLevel warn
ErrorLog /var/log/apache2/pandora_error.log
CustomLog /var/log/apache2/pandora_access.log combined
ErrorDocument 500 /srv/pandora/static/html/50x.html
ErrorDocument 502 /srv/pandora/static/html/50x.html
ErrorDocument 503 /srv/pandora/static/html/50x.html
ErrorDocument 504 /srv/pandora/static/html/50x.html
ErrorDocument 404 /srv/pandora/static/html/404.html
2009-12-31 16:04:32 +01:00
ServerSignature Off
</VirtualHost>