blob: 03fe831d3b9063c67efe2774b04b99b90e066070 (
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
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
|
{ ... }:
{
# container for excalidraw
virtualisation.oci-containers.containers.excalidraw = {
autoStart = true;
image = "excalidraw/excalidraw:latest";
environment = {
TZ = "America/Los_Angeles";
};
ports = [ "127.0.0.1:3030:80" ];
extraOptions = [ "--pull=always" ];
};
security.acme = {
defaults.email = "acme@fcuny.net";
acceptTerms = true;
};
services.nginx = {
enable = true;
recommendedProxySettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedTlsSettings = true;
virtualHosts = {
"test.fcuny.net" = {
# make it the default site: if a request goes through nginx
# without a host header, this will be the default site we serve
# for that request.
default = true;
forceSSL = true;
enableACME = true;
locations = {
"/" = {
root = "/srv/www/fcuny.net";
};
"/.well-known/acme-challenge" = {
root = "/var/lib/acme/acme-challenges";
};
};
};
"git.fcuny.net" = {
forceSSL = true;
enableACME = true;
locations = {
"/.well-known/acme-challenge" = {
root = "/var/lib/acme/acme-challenges";
};
};
};
"draw.fcuny.net" = {
forceSSL = true;
enableACME = true;
locations = {
"/".proxyPass = "http://127.0.0.1:3030";
"/.well-known/acme-challenge" = {
root = "/var/lib/acme/acme-challenges";
};
};
};
};
};
}
|