about summary refs log tree commit diff
path: root/users/sterni/machines/ingeborg/http/sterni.lv.nix
blob: 870a7198388408ab94abf8422af5f38e21c87278 (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
{ pkgs, depot, ... }:

let
  inherit (depot.users.sterni.nix.html)
    __findFile
    ;
in

{
  imports = [
    ./nginx.nix
  ];

  config = {
    services.nginx.virtualHosts."sterni.lv" = {
      enableACME = true;
      forceSSL = true;
      root = depot.users.sterni.nix.build.website "sterni.lv" { } {
        "index.html" = { ... }: pkgs.writeText "index.html" (
          <html> { } [
            (<head> { } [
              (<meta> { charset = "utf-8"; } null)
              (<title> { } "no thoughts")
            ])
            (<body> { } "🦩")
          ]
        );
      };
      # TODO(sterni): tmp.sterni.lv
      locations."/tmp/".root = toString /srv/http;
      extraConfig = ''
        location = /robots.txt {
           add_header Content-Type text/plain;
           return 200 "User-agent: *\nDisallow: /tmp\n";
        }
      '';
    };
  };
}