blob: 9bfa8ea82c47ce10d6366110928b8425c48c72b4 (
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
|
{
config,
pkgs,
...
}: {
security.acme.acceptTerms = true;
security.acme.defaults.email = "admin@spandrell.ch";
services.nginx = {
enable = true;
appendHttpConfig = ''
limit_req_zone $binary_remote_addr zone=blog:10m rate=10r/s;
'';
virtualHosts."spandrell.ch" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8080";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig = ''
limit_req zone=blog burst=20 nodelay;
proxy_set_header Host $Host;
proxy_set_header Forwarded for=$remote_addr;
'';
};
};
virtualHosts."u.spandrell.ch" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8081";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig = ''
limit_req zone=blog burst=20 nodelay;
proxy_set_header Host $Host;
proxy_set_header Forwarded for=$remote_addr;
'';
};
};
virtualHosts."s3.spandrell.ch" = {
extraConfig = ''
client_max_body_size 128M;
'';
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:9000";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig = ''
proxy_set_header Host $Host;
'';
};
};
};
}
|