• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1ServerRoot "/home/jagger/fuzz/apache/dist"
2DocumentRoot "/home/jagger/fuzz/apache/dist/htdocs"
3ServerName 127.0.0.1
4CacheEnable socache /
5#CacheSocache shmcb:/tmp/data
6Timeout 1
7KeepAlive On
8MaxKeepAliveRequests 1000
9MaxConnectionsPerChild 0
10ListenBacklog 1023
11KeepAliveTimeout 5
12HostnameLookups Off
13ErrorLog /tmp/error.log
14LogLevel crit
15Listen 127.0.0.1:8080
16PidFile /tmp/apache-pid
17Protocols http/1.1
18ServerTokens Full
19TraceEnable on
20ExtendedStatus On
21EnableSendfile On
22EnableMMAP On
23ContentDigest On
24AcceptPathInfo On
25AddDefaultCharset On
26AllowEncodedSlashes On
27MaxRanges unlimited
28MaxRangeOverlaps unlimited
29MaxRangeReversals unlimited
30MergeTrailers on
31QualifyRedirectURL On
32SeeRequestTail On
33ServerSignature On
34Options All
35ScriptAlias "/cgi-bin/" "/home/jagger/fuzz/apache/dist/cgi-bin/"
36Redirect "/abc" "/"
37RedirectMatch "(.*)\.gif$" "/image/$1.jpg"
38UseCanonicalPhysicalPort On
39HttpProtocolOptions Unsafe LenientMethods Allow0.9
40DavLockDB /tmp/dav.lock
41ProxyStatus On
42ProxyVia On
43Header set MyHeader "%D %t"
44Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"
45<Directory />
46	Options FollowSymLinks
47	AllowOverride None
48</Directory>
49<LocationMatch "/app/(?<NUMBER>[0-9]+)">
50	SetHandler "fcgi://localhost:8080/app_%{env:MATCH_NUMBER}"
51</LocationMatch>
52<Directory /home/jagger/fuzz/apache/dist/htdocs>
53	Options All MultiViews
54	AllowOverride None
55</Directory>
56<Directory /home/jagger/fuzz/apache/dist/htdocs/private>
57	DAV On
58	AuthType Basic
59	AuthName DAV
60	Options All MultiViews
61	AllowOverride None
62</Directory>
63<Directory /home/jagger/fuzz/apache/dist/cgi-bin>
64	Options All MultiViews
65	AllowOverride None
66</Directory>
67<Location "/server-status">
68    SetHandler server-status
69    AuthType Digest
70    AuthName "private"
71    AuthDigestDomain "/private/" "http://mirror.my.dom/private2/"
72    AuthDigestProvider file
73    AuthUserFile "/home/jagger/fuzz/apache/dist/digest_pw"
74    Require valid-user
75	<Limit OPTIONS>
76  		Require host localhost
77	</Limit>
78</Location>
79<LocationMatch "/error/(?<NUMBER>[0-9]+)">
80    Redirect permanent "/%{env:MATCH_NUMBER}.html"
81</LocationMatch>
82<Location "/proxy/">
83  ProxyPass "http://127.0.0.1:8080/index.html"
84  SetEnv force-proxy-request-1.0 1
85  SetEnv proxy-nokeepalive 1
86</Location>
87