-
Notifications
You must be signed in to change notification settings - Fork 2
/
reviewboard.conf
37 lines (30 loc) · 1.3 KB
/
reviewboard.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
ServerName localhost:80
NameVirtualHost *:80
<VirtualHost *:80>
DocumentRoot "/home/reviewboard/devel/htdocs/reviewboard/htdocs"
# Error handlers
ErrorDocument 500 /errordocs/500.html
WSGIPassAuthorization On
WSGIScriptAlias "/" "/home/reviewboard/devel/htdocs/reviewboard/htdocs/reviewboard.wsgi/"
<Directory "/home/reviewboard/devel/htdocs/reviewboard/htdocs">
AllowOverride All
Options -Indexes +FollowSymLinks
Allow from all
</Directory>
# Prevent the server from processing or allowing the rendering of
# certain file types.
<Location "/media/uploaded">
SetHandler None
Options None
AddType text/plain .html .htm .shtml .php .php3 .php4 .php5 .phps .asp
AddType text/plain .pl .py .fcgi .cgi .phtml .phtm .pht .jsp .sh .rb
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
</Location>
# Alias static media requests to filesystem
Alias /media "/home/reviewboard/devel/htdocs/reviewboard/htdocs/media"
Alias /static "/home/reviewboard/devel/htdocs/reviewboard/htdocs/static"
Alias /errordocs "/home/reviewboard/devel/htdocs/reviewboard/htdocs/errordocs"
Alias /favicon.ico "/home/reviewboard/devel/htdocs/reviewboard/htdocs/static/rb/images/favicon.png"
</VirtualHost>