about summary refs log tree commit diff
path: root/nix/hosts/corrino/www/events.emile.space.nix
blob: bb4db38f6a858154c4bf04ec4cce2de53cf85d4b (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
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
56
57
58
59
{ ... }:

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

    locations = {
      "/" = {
        extraConfig = ''
          proxy_pass http://[::1]:4000;
        '';
      };
    };
  };

  # Create users:
  #
  # go into the mobilizon-launchers directory within the nix store (systemctl
  # status mobilizon..., you'll find it there somehow)
  #
  # ; sudo -u mobilizon ./bin/mobilizon_ctl users.new emile@emile.space --moderator --admin

  services = {
    mobilizon = {
      enable = true;
      settings.":mobilizon" = {
        "Mobilizon.Web.Endpoint" = {
          url.host = "events.emile.space";
          http.port = 4000;

          # The IP address to listen on. Defaults to [::1] notated as a byte
          # tuple.
          # (Yes, this is an elexir application and they've mapped the type system
          # into nix)
          http.ip = {
            _elixirType = "tuple";
            value = [ 0 0 0 0 0 0 0 1 ];
          };

          has_reverse_proxy = true;
        };

        "Mobilizon.Storage.Repo" = {
          username = "mobilizon";
          socket_dir = "/var/run/postgresql";
          database = "mobilizon_prod";
        };

        ":instance" = rec {
          name = "events.emile.space";
          hostname = "emile.space";
          email_reply_to = email_from;
          email_from = "noreply@$emile.space";
        };
      };
    };
  };
}