-
Notifications
You must be signed in to change notification settings - Fork 37
/
lua-resty-acme-0.15.0-1.rockspec
45 lines (43 loc) · 1.95 KB
/
lua-resty-acme-0.15.0-1.rockspec
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
package = "lua-resty-acme"
version = "0.15.0-1"
source = {
url = "git+https://github.com/fffonion/lua-resty-acme.git",
tag = "0.15.0"
}
description = {
summary = "Automatic Let's Encrypt certificate serving and Lua implementation of ACME procotol",
detailed = [[
Automatic Let's Encrypt certificate serving (RSA + ECC) and Lua implementation of the ACME protocol.
This library consits of two parts:
- `resty.acme.autossl`: automatic lifecycle management of Let's Encrypt certificates
- `resty.acme.client`: Lua implementation of ACME v2 protocol
]],
homepage = "https://github.com/fffonion/lua-resty-acme",
license = "BSD"
}
build = {
type = "builtin",
modules = {
["resty.acme.autossl"] = "lib/resty/acme/autossl.lua",
["resty.acme.challenge.dns-01"] = "lib/resty/acme/challenge/dns-01.lua",
["resty.acme.challenge.http-01"] = "lib/resty/acme/challenge/http-01.lua",
["resty.acme.challenge.tls-alpn-01"] = "lib/resty/acme/challenge/tls-alpn-01.lua",
["resty.acme.client"] = "lib/resty/acme/client.lua",
["resty.acme.dns_provider.cloudflare"] = "lib/resty/acme/dns_provider/cloudflare.lua",
["resty.acme.dns_provider.dynv6"] = "lib/resty/acme/dns_provider/dynv6.lua",
["resty.acme.eab.zerossl-com"] = "lib/resty/acme/eab/zerossl-com.lua",
["resty.acme.openssl"] = "lib/resty/acme/openssl.lua",
["resty.acme.storage.consul"] = "lib/resty/acme/storage/consul.lua",
["resty.acme.storage.etcd"] = "lib/resty/acme/storage/etcd.lua",
["resty.acme.storage.file"] = "lib/resty/acme/storage/file.lua",
["resty.acme.storage.redis"] = "lib/resty/acme/storage/redis.lua",
["resty.acme.storage.shm"] = "lib/resty/acme/storage/shm.lua",
["resty.acme.storage.vault"] = "lib/resty/acme/storage/vault.lua",
["resty.acme.util"] = "lib/resty/acme/util.lua"
}
}
dependencies = {
"lua-resty-http >= 0.15-0",
"lua-resty-openssl >= 0.7.0",
-- "luafilesystem ~> 1",
}