source: server/fedora/config/etc/httpd/conf.d/scripts-vhost.conf @ 500

Last change on this file since 500 was 454, checked in by geofft, 16 years ago
prelim ldap stuff
File size: 922 bytes
Line 
1DocumentRoot /afs/athena.mit.edu/contrib/scripts/web_scripts/home
2SuExecUserGroup scripts users
3UserDir web_scripts
4# Comment the following line out to take the machine out of the LVS pool
5# You'll also need to prevent it from listening on 443 or 444
6Alias /heartbeat /afs/athena.mit.edu/contrib/scripts/web_scripts/heartbeat
7Alias /src /afs/athena.mit.edu/contrib/scripts/src
8Redirect /sql https://scripts.mit.edu/~sql
9
10# quentin 2007/09/20
11<Location "/server-status">
12    AuthType Basic
13    AuthName "scripts status"
14    AuthBasicProvider file
15    AuthUserFile /etc/munin/apache-htpasswd
16    Require valid-user
17    SetHandler server-status
18</Location>
19
20<Location ~ "/(robots\.txt|favicon\.ico)">
21    RewriteEngine On
22    RewriteBase /~scripts
23    RewriteCond %{REQUEST_FILENAME} !-f
24    RewriteRule .*(favicon\.ico) $1 [L,NS]
25    RewriteCond %{REQUEST_FILENAME} !-f
26    RewriteRule .*(robots\.txt) $1 [L,NS]
27</Location>
Note: See TracBrowser for help on using the repository browser.