Skip to content

Commit 1507fed

Browse files
authored
Merge pull request #319 from gstrauss/lighttpd-1.4.77
lighttpd 1.4.77
2 parents fe5c2e9 + a559e50 commit 1507fed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/js/configs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ module.exports = {
8585
usesOpenssl: false,
8686
},
8787
lighttpd: {
88-
latestVersion: '1.4.76',
88+
latestVersion: '1.4.77',
8989
eolBefore: '1.4.69',
9090
name: 'lighttpd',
9191
supportsOcspStapling: '1.4.56',

src/js/helpers/lighttpd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default (form, output) => {
3232
'ssl.pemfile = "/path/to/signed_cert_followed_by_intermediates"\n';
3333
if (minver("1.0.2", form.opensslVersion)) {
3434
if (minver("1.1.0", form.opensslVersion)) {
35-
let comment = minver("1.4.78", form.serverVersion)
35+
let comment = minver("1.4.77", form.serverVersion)
3636
? output.protocols[0] == 'TLSv1.3'
3737
: minver("1.4.56", form.serverVersion)
3838
? output.protocols[0] == 'TLSv1.2'
@@ -55,7 +55,7 @@ export default (form, output) => {
5555
'ssl.openssl.ssl-conf-cmd = ("Protocol" => "-ALL, '+output.protocols.join(', ')+'")\n';
5656
}
5757

58-
let comment = minver("1.4.78", form.serverVersion);
58+
let comment = minver("1.4.77", form.serverVersion);
5959
if (comment) {
6060
conf +=
6161
'#';

0 commit comments

Comments
 (0)