More Apache directory option stuff
[hcoop/domtool2.git] / tests / testApache.dtl
... / ...
CommitLineData
1domain "hcoop.net" with
2
3 vhost "www" where
4 User = "adamc";
5 Group = "adamc";
6 DocumentRoot = "/home/adamc/html";
7 ServerAdmin = "adamc@hcoop.net"
8 with
9 addDefaultCharset "mumbo-jumbo/incomprehensible"
10 end;
11
12 vhost "members" where
13 SSL = true
14 with
15 localProxyRewrite "^/(.*)$" "$1" 6666;
16 rewriteCond "hi" "there" [ornext];
17 rewriteRule "^/foo.html" "/bar.html" [redirectWith redir300, nosubreq];
18
19 location "/theMorgue" with
20 rewriteRule "A" "B" [];
21 end
22 end;
23
24 vhost "proxy" with
25 serverAlias "proxy2.hcoop.net";
26
27 proxyPass "/proxyLand" "http://localhost:1234/otherProxyLand";
28 proxyPassReverse "/proxyLand" "http://localhost:1234/otherProxyLand";
29
30 options [execCGI];
31 set_options [execCGI, indexes];
32
33 scriptAlias "/cgi-bin/that-script" "/home/adamc/cgi/here-it-is";
34 errorDocument "404" "I just couldn't find it.";
35
36 action "text/plain" "/cgi-bin/display";
37
38 directory "/home/adamc/thisPlace" with
39 rewriteRule "A" "B" [];
40 unset_options [includesNOEXEC];
41 end
42 end;
43
44 vhost "lists" with
45 proxyPass "/mailman" "http://hcoop.net/cgi-bin/mailman";
46 alias "/doc/mailman" "/home/adamc/mailman";
47
48 location "/the-citadel" with
49 forceTypeOff;
50 end;
51
52 directoryIndex ["index.sml", "index.h", "index.v"]
53 end;
54
55 vhost "secret" with
56 location "/" with
57 authType basic;
58 authName "Herman the skunk";
59 authUserFile "/home/adamc/passwds";
60
61 requireValidUser;
62 requireUser ["freddy", "flicky"];
63 requireGroup ["awesome"];
64
65 forceType "text/html";
66
67 orderDenyAllow;
68 satisfyAny
69 end
70 end;
71end