nixpkgs/modules
Bjørn Forsman 8c3264466a lighttpd: improve module handling
lighttpd doesn't support loading a module more than once. If you attempt
to load a module again, lighttpd prints an error message:

  (plugin.c.131) Cannot load plugin mod_cgi more than once, please fix your config (we may not accept such configs in future releases

And it's not just the error message. The module isn't loaded (or is
messed up somehow) so that neither sub-service will work properly after
this.

This is bad news for the current approach to sub-services, where each
sub-service lists the needed modules in a server.modules += (...) block.
When two sub-services need the same module we get the above issue. (And,
AFAIK, there is no way to check if a module is already loaded either.)

First I thought about an approach where each sub-service specifies the
list of plugins it needs, and that a common server.modules = (...) list
is built from the union of those lists. That would loosly couple the
sub-services with the main lighttpd nixos module expression. But I think
this is a bad idea because lighttpd module loading order matters[1], and
the module order in the global server.modules = (...) list would be
somewhat cumbersome to control.

Here is an example:

Sub-service A needs mod_fastcgi. Sub-service B needs mod_auth and
mod_fastcgi. Note that mod_auth must be loaded *before* mod_fastcgi to
take effect. The union of those modules may either be ["mod_auth"
"mod_fastcgi"] or ["mod_fastcgi" "mod_auth"] depending on the evaluation
order. The first order will work, the latter will not.

So instead of the above, this commit moves the modules from
service.modules += (...) snippets in each sub-service to a global
server.modules = (...) list in the main lighttpd module expression. The
module loading order is fixed and each module is included only if any of
the sub-services that needs it is enabled.

The downside to this approach is that sub-services need a (tiny) bit of
change to the main lighttpd nixos module expression. But I think it is
the only sane way to do it (as long as lighttpd is written the way it
is).

References:
  [1] http://redmine.lighttpd.net/projects/1/wiki/Server_modulesDetails
  [2] http://redmine.lighttpd.net/issues/2337
2013-06-16 13:15:29 +02:00
..
config Add chrony service 2013-05-23 02:07:49 +00:00
hardware Adding support of the Intel 2230 wireless card to nixos 2013-01-30 20:51:49 +01:00
installer nixos-rebuild: Handle .version-suffix not being writable 2013-06-05 17:10:46 +02:00
misc Add chrony service 2013-05-23 02:07:49 +00:00
profiles Adding support of the Intel 2230 wireless card to nixos 2013-01-30 20:51:49 +01:00
programs atop: Add basic config option for /etc/atoprc 2013-05-23 11:14:24 +00:00
security Merge pull request #173 from wizeman/apparmor-service 2013-05-28 16:46:30 -07:00
services lighttpd: improve module handling 2013-06-16 13:15:29 +02:00
system Omit GRUB if boot.loader.grub.device is set to "nodev" 2013-06-04 14:07:25 +02:00
tasks Adding iw to systemPackages. 2013-06-02 14:27:39 +02:00
testing modules/testing/minimal-kernel: linuxPackagesFor no longer takes a 'self' argument 2013-03-02 09:10:58 -05:00
virtualisation Remove obsolete option in Xen domU module 2013-04-16 19:46:22 +02:00
module-list.nix lighttpd: add cgit sub-service 2013-06-02 18:41:18 +02:00
rename.nix rename.nix: Remove annoying traces 2013-02-21 14:43:02 -05:00