• 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/FUZZ/data
6Timeout 1
7KeepAlive On
8MaxKeepAliveRequests 16
9MaxConnectionsPerChild 0
10ServerLimit 1024
11MaxRequestWorkers 16
12StartServers 1
13ThreadLimit 4
14ThreadsPerChild 4
15ListenBacklog 1023
16KeepAliveTimeout 5
17HostnameLookups Off
18ErrorLog /dev/fd/1
19LogLevel crit
20Listen 127.0.0.1:8080
21PidFile /tmp/FUZZ/apache-pid
22Protocols http/1.1
23H2Direct On
24H2EarlyHints On
25H2Push On
26H2MaxSessionStreams 4096
27H2MinWorkers 1
28H2MaxWorkers 4
29H2ModernTLSOnly off
30H2PushDiarySize 4096
31H2SerializeHeaders on
32H2StreamMaxMemSize 524288
33H2TLSCoolDownSecs 0
34H2Upgrade On
35H2CopyFiles On
36MaxMemFree 4096
37ServerTokens Full
38TraceEnable on
39ExtendedStatus On
40EnableSendfile On
41EnableMMAP On
42ContentDigest On
43AcceptPathInfo On
44AddDefaultCharset On
45AllowEncodedSlashes On
46MaxRanges unlimited
47MaxRangeOverlaps unlimited
48MaxRangeReversals unlimited
49MergeTrailers on
50QualifyRedirectURL On
51SeeRequestTail On
52ServerSignature On
53Options All
54ScriptAlias "/cgi-bin/" "/home/jagger/fuzz/apache/dist/cgi-bin/"
55Redirect "/abc" "/"
56RedirectMatch "(.*)\.gif$" "/image/$1.jpg"
57UseCanonicalPhysicalPort On
58HttpProtocolOptions Unsafe LenientMethods Allow0.9
59DavLockDB /tmp/FUZZ/dav.lock
60ProxyStatus On
61ProxyVia On
62Header set MyHeader "%D %t"
63Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"
64<Directory />
65	Options FollowSymLinks
66	AllowOverride None
67</Directory>
68<LocationMatch "/app/(?<NUMBER>[0-9]+)">
69	SetHandler "fcgi://localhost:8080/app_%{env:MATCH_NUMBER}"
70</LocationMatch>
71<Directory /home/jagger/fuzz/apache/dist/htdocs>
72	Options All MultiViews
73	AllowOverride None
74</Directory>
75<Directory /home/jagger/fuzz/apache/dist/htdocs/private>
76	DAV On
77	AuthType Basic
78	AuthName DAV
79	Options All MultiViews
80	AllowOverride None
81</Directory>
82<Directory /home/jagger/fuzz/apache/dist/cgi-bin>
83       Options All MultiViews
84       AllowOverride None
85</Directory>
86<Location "/server-status">
87    SetHandler server-status
88    AuthType Digest
89    AuthName "private"
90    AuthDigestDomain "/private/" "http://mirror.my.dom/private2/"
91    AuthDigestProvider file
92    AuthUserFile "/home/jagger/fuzz/apache/dist/digest_pw"
93    Require valid-user
94       <Limit OPTIONS>
95               Require host localhost
96       </Limit>
97</Location>
98<LocationMatch "/error/(?<NUMBER>[0-9]+)">
99    Redirect permanent "/%{env:MATCH_NUMBER}.html"
100</LocationMatch>
101<Location "/proxy/">
102  ProxyPass "http://127.0.0.1:8080/index.html"
103  SetEnv force-proxy-request-1.0 1
104  SetEnv proxy-nokeepalive 1
105</Location>
106