2024-07-01 17:49:32 +00:00
|
|
|
{ config, lib, ... }:
|
|
|
|
let
|
|
|
|
inherit (lib) mkIf;
|
|
|
|
cfg = config.bagel.services.gerrit;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
enableReload = true;
|
|
|
|
appendHttpConfig = ''
|
|
|
|
add_header Permissions-Policy "interest-cohort=()";
|
|
|
|
'';
|
2024-07-04 12:42:49 +00:00
|
|
|
recommendedProxySettings = false;
|
2024-07-01 17:49:32 +00:00
|
|
|
};
|
|
|
|
services.nginx.virtualHosts.gerrit = {
|
|
|
|
serverName = builtins.head cfg.domains;
|
|
|
|
serverAliases = builtins.tail cfg.domains;
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
extraConfig = ''
|
|
|
|
location / {
|
|
|
|
proxy_pass http://localhost:4778;
|
|
|
|
proxy_set_header X-Forwarded-For $remote_addr;
|
|
|
|
# The :443 suffix is a workaround for https://b.tvl.fyi/issues/88.
|
|
|
|
proxy_set_header Host $host:443;
|
2024-07-04 12:42:49 +00:00
|
|
|
# Gerrit can throw a lot of data.
|
2024-07-09 22:21:10 +00:00
|
|
|
proxy_buffering off;
|
2024-07-04 21:08:36 +00:00
|
|
|
# NGINX should not give up super fast. Things can take time.
|
|
|
|
proxy_read_timeout 3600;
|
2024-07-01 17:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
location = /robots.txt {
|
|
|
|
return 200 'User-agent: *\nAllow: /';
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
networking.firewall.allowedTCPPorts = [ 443 80 ];
|
|
|
|
};
|
|
|
|
}
|