-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixes error in renew window calculation that may lead to mod_md ru…
…nning watchdog in a tight loop until actual renewal becomes necessary. * /.well-known/acme-challenge requests that cannot be answered for hostnames outside the configured MDs are free to be answered by other handlers. This allows co-existance between mod_md and other ACME clients on the same server (implements PR62189). Suggested by Arkadiusz Miskiewicz <[email protected]>.
- Loading branch information
Stefan Eissing
committed
Mar 19, 2018
1 parent
a47b6fd
commit 9b0b50f
Showing
5 changed files
with
64 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
v1.1.10 | ||
---------------------------------------------------------------------------------------------------- | ||
* fixes error in renew window calculation that may lead to mod_md running | ||
watchdog in a tight loop until actual renewal becomes necessary. | ||
* /.well-known/acme-challenge requests that cannot be answered for hostnames | ||
outside the configured MDs are free to be answered by other handlers. This allows | ||
co-existance between mod_md and other ACME clients on the same server (implements PR62189). | ||
Suggested by Arkadiusz Miskiewicz <[email protected]>. | ||
|
||
v1.1.9 | ||
---------------------------------------------------------------------------------------------------- | ||
* Removed bould check from configure. Not everone building the module needs it installed. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# | ||
|
||
AC_PREREQ([2.69]) | ||
AC_INIT([mod_md], [1.1.9], [[email protected]]) | ||
AC_INIT([mod_md], [1.1.10], [[email protected]]) | ||
|
||
LT_PREREQ([2.2.6]) | ||
LT_INIT() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters