1ServerRoot "/home/jagger/fuzz/apache/dist" 2DocumentRoot "/home/jagger/fuzz/apache/dist/htdocs" 3ServerName 127.0.0.1 4Timeout 1 5CacheEnable socache / 6#CacheSocache shmcb:/tmp/data 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 h2c 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 40ProxyStatus On 41ProxyVia On 42Header set MyHeader "%D %t" 43Header set Set-Cookie testcookie "expr=-z %{req:Cookie}" 44<Directory /> 45 Options FollowSymLinks 46 AllowOverride None 47</Directory> 48<LocationMatch "/app/(?<NUMBER>[0-9]+)"> 49 SetHandler "fcgi://localhost:8080/app_%{env:MATCH_NUMBER}" 50</LocationMatch> 51<Directory /home/jagger/fuzz/apache/dist/htdocs/private> 52 DAV On 53 AuthType Basic 54 AuthName DAV 55 Options All MultiViews 56 AllowOverride None 57</Directory> 58<Directory /home/jagger/fuzz/apache/dist/htdocs> 59 Options All MultiViews 60 AllowOverride None 61</Directory> 62<Directory /home/jagger/fuzz/apache/dist/cgi-bin> 63 Options All MultiViews 64 AllowOverride None 65</Directory> 66<Location "/server-status"> 67 SetHandler server-status 68 AuthType Digest 69 AuthName "private" 70 AuthDigestDomain "/private/" "http://mirror.my.dom/private2/" 71 AuthDigestProvider file 72 AuthUserFile "/home/jagger/fuzz/apache/dist/digest_pw" 73 Require valid-user 74 <Limit OPTIONS> 75 Require host localhost 76 </Limit> 77</Location> 78<LocationMatch "/error/(?<NUMBER>[0-9]+)"> 79 Redirect permanent "/%{env:MATCH_NUMBER}.html" 80</LocationMatch> 81<Location "/proxy/"> 82 ProxyPass "http://127.0.0.1:8080/index.html" 83 SetEnv force-proxy-request-1.0 1 84 SetEnv proxy-nokeepalive 1 85</Location> 86