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:
parent
2cd3e205f4
commit
f53c9d70ec
|
@ -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
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue