Skip to content
This repository was archived by the owner on Jun 9, 2026. It is now read-only.

Commit 9c7aae8

Browse files
author
Stefan Eissing
committed
Bumping version after last merges. Relaxing proxy setup to work on all platforms (hopefully).
1 parent 8b7025c commit 9c7aae8

6 files changed

Lines changed: 11 additions & 8 deletions

File tree

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Michal Karm Babacek (@Karm) added `cmake` support, especially valuable under Windows.
12
* protocol check for pre-configured "tls-alpn-01" challenge has been improved. It will now
23
check all matching virtual hosts for protocol support. Thanks to @mkauf.
34

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,9 +743,13 @@ dir modules\
743743
mod_md.exp mod_md.lib mod_md.so* mod_md.so.manifest
744744
```
745745

746+
## Debian
747+
748+
Debian unstable includes the latest Apache httpd release. If you want a newer version of `mod_md` on top of it, it should be easy to build it with the instructions above.
749+
746750
## Fedora
747751

748-
The plan in Fedora is to include v2.x of mod_md with Fedora 31, which is due to be released end of summer 2019.
752+
The module has become part of Fedora 31.
749753

750754
## Ubuntu
751755

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515

1616
AC_PREREQ([2.69])
17-
AC_INIT([mod_md], [2.2.5], [stefan.eissing@greenbytes.de])
17+
AC_INIT([mod_md], [2.2.6], [stefan.eissing@greenbytes.de])
1818

1919
LT_PREREQ([2.2.6])
2020
LT_INIT()

src/md_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
* @macro
2828
* Version number of the md module as c string
2929
*/
30-
#define MOD_MD_VERSION "2.2.5-git"
30+
#define MOD_MD_VERSION "2.2.6-git"
3131

3232
/**
3333
* @macro
3434
* Numerical representation of the version number of the md module
3535
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3636
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3737
*/
38-
#define MOD_MD_VERSION_NUM 0x020205
38+
#define MOD_MD_VERSION_NUM 0x020206
3939

4040
#define MD_ACME_DEF_URL "https://acme-v02.api.letsencrypt.org/directory"
4141

test/conf/proxy.conf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ Listen 5052
77
ProxyVia On
88

99
<Proxy *>
10-
Order deny,allow
11-
Deny from all
12-
Allow from localhost
10+
# No require or other restrictions, this is just a test server
1311
</Proxy>
1412
</VirtualHost>
1513

test/conf/proxy.conf.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Listen @HTTP_PROXY_PORT@
77
ProxyVia On
88

99
<Proxy *>
10-
Require localhost
10+
# No require or other restrictions, this is just a test server
1111
</Proxy>
1212
</VirtualHost>
1313

0 commit comments

Comments
 (0)