summaryrefslogtreecommitdiff
blob: 59958aac8fd0d7c4b4370b2fabd9d78735ef733c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<IfDefine SCGI>
	<IfModule !mod_scgi.c>
	    LoadModule scgi_module     modules/mod_scgi.so
	</IfModule>

	<IfModule mod_scgi.c>
	# Apache2 example
	#<Location "/dynamic">
	#	SetHandler scgi-handler
	#	SCGIServer localhost:4000
	#	SCGIHandler On
	#	Options -Multiviews
	#</Location>
	#<LocationMatch "^/(dynamic|login)($|/)">
	#	SetHandler scgi-handler
	#	SCGIServer localhost:4000
	#	SCGIHandler On
	#	Options -Multiviews
	#</Location>
	#<Location "/foo">
	#	SCGIServer localhost:4000
	#	SCGIHandler On
	#	Options -Multiviews
	#</Location>
	#<Location "/bar">
	#	SCGIServer localhost:4001
	#	SCGIHandler On
	#	SCGIServerTimeout 10
	#	Options -Multiviews
	#</Location>
	#<Location "/bar/images">
	#	SCGIHander Off
	#</Location>

	# Apache1 example
	#<Location "/dynamic">
	#	 SCGIServer 127.0.0.1 4000
	#	 SCGIHandler On
	#	 Options -Multiviews
	#</Location>
	#<LocationMatch "^/(dynamic|login)($|/)">
	#	 SCGIServer 127.0.0.1 4000
	#	 SCGIHandler On
	#	 Options -Multiviews
	#</Location>
	#<Location "/foo">
	#	 SCGIServer 127.0.0.1 4000
	#	 SCGIHandler On
	#	 Options -Multiviews
	#</Location>
	#<Location "/bar">
	#	 SCGIServer 127.0.0.1 4001
	#	 SCGIHandler On
	#	 Options -Multiviews
	#</Location>
	</IfModule>
</IfDefine>
# vim:ft=apache: