Jenkins: Difference between revisions

imported>Qknight
No edit summary
m add sha for urls, add outdated notice
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Jenkins is an extendable open source continuous integration server.
== services.jenkins activation==
== services.jenkins activation==


Line 71: Line 73:
     }
     }
   }
   }
== reverse proxy ==
  services.nginx = {
    enable = true;
    recommendedGzipSettings = true;
    recommendedOptimisation = true;
    virtualHosts = {
      jenkins = {
        serverName = "ci.example.com";
        serverAliases = [ "ci-static.example.com" ];
        forceSSL = true;
        enableACME = true;
        locations = {
          "/" = {
            proxyPass = "http://127.0.0.1:8080/";
          };
        };
      };
    };
You might want to enable the firewall using:
  networking.firewall.enable = true;
== using email ==
Use <https://gitlab.com/simple-nixos-mailserver> for email support. Can be tested using a test button from the <localhost:8080> webpage.


== building nix projects ==
== building nix projects ==
Line 76: Line 107:
[https://github.com/juspay/jenkins-nix-ci jenkins-nix-ci]: A NixOS module for Jenkins, optimized specifically for running projects using Nix.
[https://github.com/juspay/jenkins-nix-ci jenkins-nix-ci]: A NixOS module for Jenkins, optimized specifically for running projects using Nix.


[https://github.com/mrVanDalo mrVanDalo] has a [https://git.ingolf-wagner.de/palo/nixos-config/src/branch/main/nixos/library/jenkins.nix library] to declare jenkins in his repository. It can be used as shown [https://git.ingolf-wagner.de/palo/nixos-config/src/branch/main/nixos/configs/workhorse/jenkins.nix here]
[https://github.com/mrVanDalo mrVanDalo] has a [https://git.ingolf-wagner.de/palo/nixos-config/src/commit/74b2eb869bdf6cf531273de925e40cf4ca914f04/nixos/library/jenkins.nix library] to declare jenkins in his repository. It can be used as shown [https://git.ingolf-wagner.de/palo/nixos-config/src/commit/74b2eb869bdf6cf531273de925e40cf4ca914f04/nixos/configs/workhorse/jenkins.nix here].
* <b>Note:</b> the above repo no longer has those sources so it is outdated, but keeping it as a reference.
 
[[Category:Server]]
[[Category:Applications]]