blob: acf0158f77d384681990eac4ba6b89f433e140f4 (
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
|
job "sh" {
group "web" {
network {
port "http" {
to = 80
}
}
service {
name = "sh"
port = "http"
provider = "nomad"
tags = [
"nginx.hostname=sh.magnusson.space",
"nginx.certname=magnusson.space",
]
}
task "web" {
driver = "docker"
resources {
cpu = 50
memory = 20
}
config {
image = "nginx:1.25-alpine"
ports = ["http"]
volumes = [
"local/config:/etc/nginx/conf.d",
"local/www:/var/www",
]
}
template {
data = <<EOF
server {
listen 80 default_server;
listen [::]:80 default_server;
http2 on;
root /var/www;
location / {
index index.txt;
}
}
EOF
destination = "local/config/website.conf"
}
template {
data = <<EOF
echo "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEdUe7mxGdV/Q37RKndPzDHisFb7q/xm+L97jcGluSDOA8MGt/+wTxpyGxfyEqaMvwV2bakaMVHTB3711dDu5kE=" >> ~/.ssh/authorized_keys
systemctl enable ssh
systemctl enable sshd
command -v curl >/dev/null && curl sh.magnusson.space/hello || command -v wget >/dev/null && wget sh.magnusson.space/hello -O /dev/null
EOF
destination = "local/www/index.txt"
}
}
}
}
|