1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

On the trunk:

mod_ssl: heavily simplified SSLPolicy. No more user defines, no propxy policies,
     just the basic "modern", "intermediate" and "old" as specified by Mozilla security.



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1827561 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Eissing
2018-03-23 12:24:29 +00:00
parent 88a6778ccd
commit f8df6dc61a
8 changed files with 21 additions and 429 deletions

View File

@@ -297,13 +297,6 @@ apr_status_t ssl_init_Module(apr_pool_t *p, apr_pool_t *plog,
sc->fips = FALSE;
}
#endif
if (sc->error_policy) {
rv = ssl_policy_lookup(p, sc->error_policy)? APR_EGENERAL : APR_ENOENT;
ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s, APLOGNO(10094)
"Applying SSLPolicy '%s'", sc->error_policy);
return rv;
}
}
#if APR_HAS_THREADS && MODSSL_USE_OPENSSL_PRE_1_1_API