Compare commits

...

3 Commits

Author SHA1 Message Date
Daniel Berteaud fdc1672b7e Automatic commit of package [smeserver-letsencrypt-client] release [0.2.6-1]. 4 years ago
Daniel Berteaud 8dfda4711e Don't restrict ACME challenges to the clear text vhost 4 years ago
Daniel Berteaud cc2d9e31fd Cleanup spec file for tito 4 years ago
  1. 2
      .tito/packages/smeserver-letsencrypt-client
  2. 2
      root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/Ejabberd/80Letsencrypt
  3. 2
      root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/LemonLDAPManager/80Letsencrypt
  4. 2
      root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/LemonLDAPPortal/80Letsencrypt
  5. 2
      root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/LemonLDAPSoap/80Letsencrypt
  6. 2
      root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/UserManagerVirtualHost/80Letsencrypt
  7. 15
      smeserver-letsencrypt-client.spec

@ -1,5 +1,5 @@
{
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled' && ((${'httpd-e-smith'}{'TCPPort'} || '80') eq $port)){
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled'){
$OUT .=<<"_EOF";
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/challenges/
<Location /.well-known/acme-challenge/>

@ -1,5 +1,5 @@
{
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled' && ((${'httpd-e-smith'}{'TCPPort'} || '80') eq $port)){
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled'){
$OUT .=<<"_EOF";
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/challenges/
<Location /.well-known/acme-challenge/>

@ -1,5 +1,5 @@
{
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled' && ((${'httpd-e-smith'}{'TCPPort'} || '80') eq $port)){
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled'){
$OUT .=<<"_EOF";
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/challenges/
<Location /.well-known/acme-challenge/>

@ -1,5 +1,5 @@
{
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled' && ((${'httpd-e-smith'}{'TCPPort'} || '80') eq $port)){
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled'){
$OUT .=<<"_EOF";
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/challenges/
<Location /.well-known/acme-challenge/>

@ -1,5 +1,5 @@
{
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled' && ((${'httpd-e-smith'}{'TCPPort'} || '80') eq $port)){
if (($domain->prop('Letsencrypt') || 'enabled') ne 'disabled'){
$OUT .=<<"_EOF";
Alias /.well-known/acme-challenge/ /var/lib/dehydrated/challenges/
<Location /.well-known/acme-challenge/>

@ -1,11 +1,7 @@
%define version 0.2.4
%define release 1
%define name smeserver-letsencrypt-client
Summary: Let's Encrypt client for SME Server based on dehydrated
Name: %{name}
Version: 0.2.5
Release: %{release}%{?dist}
Name: smeserver-letsencrypt-client
Version: 0.2.6
Release: 1%{?dist}
License: GPL
Group: Applications/System
Source: %{name}-%{version}.tar.gz
@ -22,6 +18,11 @@ Automatically get certificates from letsencrypt
Using https://github.com/lukas2511/dehydrated
%changelog
* Fri Oct 23 2020 Daniel Berteaud <daniel@firewall-services.com> 0.2.6-1
- Don't restrict ACME challenges to the clear text vhost (daniel@firewall-
services.com)
- Cleanup spec file for tito (daniel@firewall-services.com)
* Wed Jul 15 2020 Daniel Berteaud <daniel@firewall-services.com> 0.2.5-1
- Bump version

Loading…
Cancel
Save