3
0
Fork 0
forked from mirrors/nixpkgs

* The lack of a newline at the end of "EnableSendFile Off" caused a

broken httpd.conf to be generated.  We should really have a merge
  function that appends newlines to every value of options like
  services.httpd.extraConfig.

svn path=/nixos/branches/modular-nixos/; revision=16404
This commit is contained in:
Eelco Dolstra 2009-07-16 16:13:35 +00:00
parent 2cd3e205f4
commit f53c9d70ec

View file

@ -115,5 +115,8 @@ in
# sendfile() is currently broken over CIFS, so fix it here for all
# configurations that use Apache.
services.httpd.extraConfig = "EnableSendFile Off";
services.httpd.extraConfig =
''
EnableSendFile Off
'';
}