blob: c5aa45bd71f3ec11b5f09c875fc03ca980985a65 (
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
|
{ config, lib, pkgs, inputs, ... }:
{
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.nginx = {
enable = true;
recommendedOptimisation = true;
recommendedTlsSettings = true;
recommendedProxySettings = true;
virtualHosts."noms.ing" = {
enableACME = true;
forceSSL = true;
locations."/".root = ../../pkgs/nomsing;
extraConfig = ''
include ${inputs."ai.robots.txt"}/nginx-block-ai-bots.conf;
'';
};
virtualHosts."meow.noms.ing" = {
enableACME = true;
forceSSL = true;
locations."/".root = ../../pkgs/nomsing;
extraConfig = ''
include ${inputs."ai.robots.txt"}/nginx-block-ai-bots.conf;
'';
};
virtualHosts."webring.noms.ing" = {
enableACME = true;
forceSSL = true;
locations."~ (.*)".extraConfig = ''
fastcgi_pass unix:${config.services.fcgiwrap.instances.nomsing.socket.address};
include ${pkgs.nginx}/conf/fastcgi_params;
fastcgi_param SCRIPT_FILENAME ${lib.getExe pkgs.nomsring};
fastcgi_param PATH_INFO $1;
'';
extraConfig = ''
include ${inputs."ai.robots.txt"}/nginx-block-ai-bots.conf;
'';
};
};
services.fcgiwrap.instances.nomsing = {
socket = {
user = "nomsring";
group = "users";
mode = "0622";
};
};
users.users.nomsring = {
isSystemUser = true;
group = "users";
};
}
|