erlang-p1-pkix 1.0.9-2 source package in Ubuntu
Changelog
erlang-p1-pkix (1.0.9-2) unstable; urgency=medium [ Debian Janitor ] * Update renamed lintian tag names in lintian overrides. * Set field Upstream-Contact in debian/copyright. * Remove obsolete fields Contact, Name from debian/upstream/metadata (already present in machine-readable debian/copyright). [ Philipp Huebner ] * Updated Standards-Version: 4.6.2 (no changes needed) * Updated years in debian/copyright -- Philipp Huebner <email address hidden> Wed, 08 Feb 2023 12:55:34 +0100
Upload details
- Uploaded by:
- Ejabberd Packaging Team
- Uploaded to:
- Sid
- Original maintainer:
- Ejabberd Packaging Team
- Architectures:
- any
- Section:
- misc
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | misc | |
Lunar | release | universe | misc |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
erlang-p1-pkix_1.0.9-2.dsc | 2.1 KiB | 5ca2239c9403f866dddbe67f0c93f577e5ca612582f0bfe07c7811ed4c8118ec |
erlang-p1-pkix_1.0.9.orig.tar.gz | 196.8 KiB | a71ccaf32f333b91470817232eb38a059d0ca651e681aeffee42fb3d19f85a48 |
erlang-p1-pkix_1.0.9-2.debian.tar.xz | 3.1 KiB | 5859030fa23f95132e9ce6d5b6491bc55e12482386b7826abcf9dae2a7fc8458 |
Available diffs
- diff from 1.0.9-1 to 1.0.9-2 (1.0 KiB)
No changes file available.
Binary packages built by this source
- erlang-p1-pkix: PKIX certificates management library for Erlang
The idea of the library is to simplify certificates configuration in Erlang
programs. Typically an Erlang program which needs certificates (for HTTPS/
MQTT/XMPP/etc) provides a bunch of options such as certfile, chainfile,
privkey, etc. The situation becomes even more complicated when a server
supports so called virtual domains because a program is typically required to
match a virtual domain with its certificate. If a user has plenty of virtual
domains it's quickly becoming a nightmare for them to configure all this.
The complexity also leads to errors: a single configuration mistake and a
program generates obscure log messages, unreadable Erlang tracebacks or,
even worse, just silently ignores the errors.
Fortunately, the large part of certificates configuration can be automated,
reducing a user configuration to something as simple as:
.
certfiles:
- /etc/letsencrypt/live/ */*.pem
.
The purpose of this library is to do this dirty job under the hood.