]> err.no Git - sope/blob - Recycler/ApacheWO/httpd.conf
fixed several mistakes in the Xcode project template.
[sope] / Recycler / ApacheWO / httpd.conf
1 # $Id: httpd.conf,v 1.1 2004/06/08 11:06:00 helge Exp $
2
3 # globals
4 ServerType           standalone
5 ServerRoot           "/HOME/helge/mdev/SkyrixRoot"
6 PidFile              /HOME/helge/mdev/SkyrixRoot/logs/httpd8090.pid
7 ScoreBoardFile       /HOME/helge/mdev/SkyrixRoot/logs/httpd8090.scoreboard
8 DocumentRoot         "/HOME/helge/mdev/SkyrixRoot/Library/WebServer/Documents"
9 ErrorLog             /HOME/helge/mdev/SkyrixRoot/logs/error8090_log
10 AccessFileName       .htaccess
11 Timeout              300
12 KeepAlive            On
13 MaxKeepAliveRequests 100
14 KeepAliveTimeout     15
15 MinSpareServers      1
16 MaxSpareServers      1
17 StartServers         1
18 MaxClients           150
19 MaxRequestsPerChild  0
20 ExtendedStatus       On
21 Port                 8090
22 User                 helge
23 Group                dev
24 ServerAdmin          helge.hess@skyrix.com
25 HostnameLookups      Off
26 ServerSignature      On
27
28 # load Objective-C bundle loader ...
29
30 LoadModule gsbundle_module \
31         Libraries/ix86/linux-gnu/apache/mod_gsbundle.so
32 #AddModule  mod_gsbundle.c
33
34 # load a bundle
35
36 LoadApacheBundle  ApacheWO.apache
37 #LoadSxApplication Test.sxa
38
39 AddType application/x-httpd-wox .wox
40
41 <Directory />
42     Options FollowSymLinks
43     AllowOverride None
44     Order allow,deny
45     Allow from all
46 </Directory>
47
48 Alias /docs/ "/HOME/helge/mdev/helge/ApacheWO/docs/"
49
50 <Directory "/HOME/helge/mdev/helge/ApacheWO/docs/">
51   # This may also be "None", "All", or any combination of "Indexes",
52   # "Includes", "FollowSymLinks", "ExecCGI", or "MultiViews".
53   Options FollowSymLinks
54   AllowOverride All
55 </Directory>
56
57 <Files ".htaccess">
58   order allow,deny
59   deny from all
60 </Files>
61
62 <LocationMatch "^.*/CVS/$">
63   order allow,deny
64   deny from all
65 </LocationMatch>
66
67 <LocationMatch "/sx*">
68   SetSxApplication    lapp
69   SetSxRequestHandler WODirectActionRequestHandler
70   SetHandler sx-handler
71 </LocationMatch>
72
73 # Directory-Index could help ... ?
74 #<LocationMatch "^.*/[a-z][a-z0-9_]*.wox/$">
75 #  ForceType  application/x-httpd-wox
76 #  SetHandler wox-page
77 #</LocationMatch>