blob: 4fd0b8d0ecf386fd621fef6411eacc159a031ee3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{ config, pkgs, lib, ... }:
let
cfg = config.my.services.sourcegraph;
secrets = config.age.secrets;
in
{
options.my.services.sourcegraph = with lib; {
enable = mkEnableOption "sourcegraph server";
vhostName = mkOption {
type = types.str;
example = "cs.fcuny.net";
description = "Name for the virtual host";
};
};
config = lib.mkIf cfg.enable {
virtualisation.oci-containers.containers.sourcegraph = {
image = "sourcegraph/server:3.31.2";
ports = [ "127.0.0.1:7080:7080" ];
volumes = [
"/var/lib/sourcegraph/etc:/etc/sourcegraph"
"/var/lib/sourcegraph/data:/var/opt/sourcegraph"
];
# Sourcegraph needs a higher nofile limit, it logs warnings
# otherwise (unclear whether it actually affects the service).
extraOptions = [ "--ulimit" "nofile=10000:10000" ];
};
services.nginx.virtualHosts."${cfg.vhostName}" = {
forceSSL = true;
useACMEHost = cfg.vhostName;
listen = [
{
addr = "100.85.232.66";
port = 443;
ssl = true;
}
{
addr = "100.85.232.66";
port = 80;
ssl = false;
}
];
locations."/" = { proxyPass = "http://127.0.0.1:7080"; };
};
security.acme.certs."${cfg.vhostName}" = {
dnsProvider = "gcloud";
credentialsFile = secrets."acme/credentials".path;
};
};
}
|