Home

infra @753a787c2b0026e34e4c25fb6b5d93e1368ee226 - refs - log -
-
https://git.jolheiser.com/infra.git
dragonwell flake
infra / dragonwell / atproto.nix
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
{ config, ... }:
{
  age.secrets.pds.file = ../secrets/pds.age;
  services = {
    bluesky-pds = {
      enable = true;
      pdsadmin.enable = true;
      settings = {
        PDS_PORT = 2759;
        PDS_HOSTNAME = "pds.jolheiser.com";
      };
      environmentFiles = [
        config.age.secrets.pds.path
      ];
    };
    caddy.virtualHosts."pds.jolheiser.com".extraConfig = ''
      reverse_proxy localhost:2759
    '';
  };
}