Skip to content

Commit

Permalink
chore(*) release luarocks 0.1.2-0
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Sep 26, 2019
1 parent f1853ab commit 2683924
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions lua-resty-acme-0.1.2-0.rockspec
@@ -0,0 +1,38 @@
package = "lua-resty-acme"
version = "0.1.2-0"
source = {
url = "git+https://github.com/fffonion/lua-resty-acme.git"
}
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.http-01"] = "lib/resty/acme/challenge/http-01.lua",
["resty.acme.client"] = "lib/resty/acme/client.lua",
["resty.acme.openssl"] = "lib/resty/acme/openssl.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-worker-events >= 1.0.0-1",
"lua-resty-lrucache >= 0.09-2",
"lua-resty-openssl >= 0.1.0-1",
}

0 comments on commit 2683924

Please sign in to comment.