blob: 1544f1e9331b8127c59cf4f9662410343bc8c616 (
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
|
job "homepage" {
group "web" {
count = 1
network {
port "http" {
to = 80
}
}
service {
name = "homepage"
port = "http"
provider = "nomad"
tags = [
"nginx.hostname=.magnusson.wiki",
"nginx.certname=magnusson.wiki",
]
}
task "web" {
driver = "docker"
config {
image = "nginx:1.25-alpine"
ports = ["http"]
volumes = [
"local/config:/etc/nginx/conf.d",
"local/html:/var/www/html",
]
}
template {
data = <<EOF
server {
listen 80 default_server;
listen [::]:80 default_server;
http2 on;
root /var/www/html;
location / {
index index.html;
}
}
EOF
destination = "local/config/website.conf"
}
template {
data = file("jobs/homepage/index.html")
destination = "local/html/index.html"
}
artifact {
source = "https://files.magnusson.space/images/epost.png"
destination = "local/html/"
}
}
}
}
|