I’m trying to configure CGI on Apache Web Server, running on NixOS. I was looking through documentation and found that I have to perform module load this way:
LoadModule cgid_module modules/mod_cgid.so
so I added module to extraModules
array:
services.httpd.extraModules = [ "cgid" ];
But this does not seems to work, although Apache systemd service starts normally and no error is being reported.
Please advice, how should I import this particular module in general, configure Apache for CGI?