pandora/etc/apache2/pandora.conf

57 lines
1.3 KiB
Text
Raw Normal View History

2009-12-31 15:04:32 +00:00
<VirtualHost *:80>
#ServerName pandora.YOURDOMAIN.COM
2009-12-31 15:04:32 +00:00
<Location />
Options -Indexes
</Location>
<Directory /srv/pandora>
2009-12-31 15:04:32 +00:00
Order deny,allow
Allow from all
</Directory>
<Location />
XSendFile on
XSendFilePath /srv/pandora
</Location>
2012-02-23 20:42:26 +00:00
AddType video/webm webm
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
2012-02-22 16:34:41 +00:00
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 16:34:41 +00:00
ProxyPreserveHost On
ProxyPass /api/ws/ ws://127.0.0.1:2622/ retry=0
2012-02-22 16:34:41 +00:00
ProxyPass / http://127.0.0.1:2620/
ProxyPassReverse / http://127.0.0.1:2620/
2009-12-31 15:04:32 +00:00
2012-04-19 16:06:38 +00: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 15:04:32 +00:00
ServerSignature Off
</VirtualHost>