* 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:
parent
fddddb3f35
commit
3da504ab6a
@ -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
|
||||
'';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user