24 lines
413 B
Nix
24 lines
413 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
./base.nix
|
||
|
];
|
||
|
|
||
|
config = {
|
||
|
services.nginx.virtualHosts.gerrit = {
|
||
|
serverName = "cl.tvl.fyi";
|
||
|
enableACME = true;
|
||
|
forceSSL = true;
|
||
|
|
||
|
extraConfig = ''
|
||
|
location / {
|
||
|
proxy_pass http://localhost:4778;
|
||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||
|
proxy_set_header Host $host;
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|