3
0
Fork 0
forked from mirrors/nixpkgs

* Disable mod_unique_id because it fails when the machine doesn't have

an IP address yet.
* Create /var/run/httpd, /var/log/httpd automatically.

svn path=/nixos/trunk/; revision=10064
This commit is contained in:
Eelco Dolstra 2008-01-03 17:11:36 +00:00
parent fddddb3f35
commit 3da504ab6a

View file

@ -26,7 +26,7 @@ let
# Other modules.
"ext_filter" "include" "log_config" "env" "mime_magic"
"cern_meta" "expires" "headers" "usertrack" "unique_id" "setenvif"
"cern_meta" "expires" "headers" "usertrack" /* "unique_id" */ "setenvif"
"mime" "dav" "status" "autoindex" "asis" "info" "cgi" "dav_fs"
"vhost_alias" "negotiation" "dir" "imagemap" "actions" "speling"
"userdir" "alias" "rewrite"
@ -224,6 +224,11 @@ in
start on ${startingDependency}/started
stop on shutdown
start script
mkdir -m 0700 -p ${cfg.stateDir}
mkdir -m 0700 -p ${cfg.logDir}
end script
respawn ${httpd}/bin/httpd -f ${httpdConf} -DNO_DETACH
'';