mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
* 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
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue