about summary refs log tree commit diff
path: root/nix/hosts/corrino/www/ctf.emile.space.nix
blob: a6ebd05b2fb3991a7af0f78c89a4a085aa6b6ab4 (plain)
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
{ config, ... }:

{
  services.nginx.virtualHosts."ctf.emile.space" = {
    forceSSL = true;
    enableACME = true;

    locations = {
      "/" = {
        # proxyPass = "http://127.0.0.1:${toString config.emile.ports.ctf}";
        proxyPass = "http://138.199.213.51";
      };
    };
  };

  # virtualisation.oci-containers = {
  #   # backend = "docker";
  #   containers = {
  #     "ctfd" = {
  #       image = "ctfd/ctfd";
  #       ports = [ "${toString config.emile.ports.ctf}:8000" ];
  #     };
  #   };
  # };
}