blob: 3c7acea8b75ce1650b8e80bf6d2e6b1a1fbf11db (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
{ config, lib, ... }:
let
rootDomain = config.networking.domain;
ports = import ./Ports.nix;
in
{
networking.firewall = {
allowedTCPPorts = [
ports.ssh
ports.git
ports.http
ports.https
ports.sabten
ports.gemini
ports.radicale
ports.znc
];
};
services = {
radicale = {
enable = true;
settings = {
server = {
hosts = [
"0.0.0.0:${toString ports.radicale}"
"[::]:${toString ports.radicale}"
];
};
auth = {
type = "htpasswd";
htpasswd_filename = "/etc/radicale/users";
htpasswd_encryption = "plain";
};
};
};
gmnisrv = {
enable = true;
settings = {
listen = "0.0.0.0:${toString ports.gemini} [::]:${toString ports.gemini}";
":tls" = { store = "/var/lib/gmnisrv"; };
"bsima.me" = {
"root" = "/var/web/ben";
};
"simatime.com" = {
"root" = "/var/web/simatime.com";
"cgi" = "on";
};
};
};
nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
statusPage = true;
user = "nginx";
group = "nginx";
virtualHosts = {
${rootDomain} = {
forceSSL = true;
enableACME = true;
locations = {
# the nginx/cgit module puts a '/' at the end of 'location', so we need to
# redirect '/git' to '/git/'
"/git".return = "301 https://$host/git/";
# disabled for nixpert test
#"/" = {
# root = "/var/web/simatime.com";
# extraConfig = ''
# autoindex on;
# '';
#};
# serve /~$USER paths
"~ ^/~(.+?)(/.*)?$" = {
alias = "/var/web/$1$2";
index = "index.html index.htm";
extraConfig = ''
autoindex on;
'';
};
};
};
"bsima.me" = {
locations."/" = {
root = "/var/web/ben";
index = "index.html index.htm";
extraConfig = ''
autoindex on;
'';
};
serverAliases = [ "www.bsima.me" ];
forceSSL = true;
useACMEHost = rootDomain;
};
"hoogle.${rootDomain}" = {
locations."/".proxyPass = "http://${ports.bensIp}:${toString ports.hoogle}";
forceSSL = true;
useACMEHost = rootDomain;
};
"tv.${rootDomain}" = {
locations."/".proxyPass = "http://${ports.bensIp}:${toString ports.jellyfin}";
forceSSL = true;
useACMEHost = rootDomain;
};
"cal.${rootDomain}" = {
locations."/".proxyPass = "http://localhost:${toString ports.radicale}";
forceSSL = true;
useACMEHost = rootDomain;
};
"devalloc.io" = {
forceSSL = true;
useACMEHost = rootDomain;
globalRedirect = "dragons.dev";
};
"dragons.dev" = {
locations."/".proxyPass = "http://${ports.bensIp}:${toString ports.dragons}";
forceSSL = true;
useACMEHost = rootDomain;
};
"dandel-rovbur.${rootDomain}" = {
locations."/".proxyPass = "http://${ports.bensIp}:${toString ports.dandel-rovbur}";
forceSSL = true;
useACMEHost = rootDomain;
};
"sabten.${rootDomain}" = {
locations."/".proxyPass = "http://localhost:${toString ports.sabten}";
forceSSL = true;
useACMEHost = rootDomain;
};
"notebook.simatime.com" = {
forceSSL = true;
useACMEHost = rootDomain;
locations = {
"/" = {
proxyPass = "http://${ports.bensIp}:${toString ports.jupyter}";
proxyWebsockets = true;
extraConfig = ''
proxy_buffering off;
proxy_read_timeout 86400;
'';
};
"/(api/kernels/[^/]+/channels|terminals/websocket)/" = {
proxyPass = "http://${ports.bensIp}:${toString ports.jupyter}";
proxyWebsockets = true;
};
};
};
};
};
};
# This must contain all of the other domains we host
security.acme.certs.${rootDomain}.extraDomainNames = [
"bsima.me" "www.bsima.me"
"dragons.dev" "devalloc.io"
"nixpert.chat"
] ++ map (sub: "${sub}.${rootDomain}") [
"tv"
"matrix"
"chat"
"hoogle"
"dandel-rovbur"
"sabten"
"cal"
"notebook"
];
}
|