Imported Upstream version 17.22.1
[platform/upstream/libzypp.git] / tests / data / lighttpdconf / conf.d / fastcgi.conf
1 #######################################################################
2 ##
3 ##  FastCGI Module 
4 ## --------------- 
5 ##
6 ## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModFastCGI
7 ##
8 server.modules += ( "mod_fastcgi" )
9
10 fastcgi.server = (
11   "/handler/" =>
12   (( "socket" => env.ZYPP_TEST_SOCKPATH,
13      "check-local" => "disable",
14      "docroot" => "/" # remote server may use 
15                       # its own docroot
16    ))
17 )
18
19 ##
20 #######################################################################