aboutsummaryrefslogblamecommitdiff
path: root/modules/private/websites/florian/integration.nix
blob: 8ac1f46eb14e4299433ed4c00ed509aa0528e495 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                            
   

                                                                        
                                                   
                                      



                                                                                                                     
                                                                 
 
                                                                       
                                                                        
                                  
                         
                                           
                           
                     
                                       


                                       
                             









                                                            
{ lib, pkgs, config,  ... }:
let
  adminer = pkgs.callPackage ../commons/adminer.nix { inherit config; };
  cfg = config.myServices.websites.florian.integration;
  varDir = "/var/lib/ftp/florian/www.ft.immae.dev";
  env = config.myEnv.websites.florian;
in {
  options.myServices.websites.florian.integration.enable = lib.mkEnableOption "enable Florian's website integration";

  config = lib.mkIf cfg.enable {
    security.acme.certs."ftp".extraDomains."ft.immae.dev" = null;

    services.websites.env.integration.modules = adminer.apache.modules;
    services.websites.env.integration.vhostConfs.florian_integration = {
      certName    = "integration";
      addToCerts  = true;
      hosts       = [ "www.ft.immae.dev" ];
      root        = varDir;
      extraConfig = [
        (adminer.apache.vhostConf null)
        ''
        ServerAdmin ${env.server_admin}

        <Directory ${varDir}>
          DirectoryIndex index.php index.htm index.html
          Options Indexes FollowSymLinks MultiViews Includes
          AllowOverride None
          Require all granted
        </Directory>
          ''
      ];
    };
  };
}