summaryrefslogtreecommitdiffstats
path: root/ssl-config-generator
diff options
context:
space:
mode:
authorJulien Vehent <julien@linuxwall.info>2016-02-23 08:15:02 -0500
committerJulien Vehent <julien@linuxwall.info>2016-02-23 08:21:30 -0500
commit1a41a79ca2d93bb5b86cb834cd1cc05a169221ed (patch)
treecc005f7404669432a8ce4a5378333a2059886b36 /ssl-config-generator
parenta62a63cfaacaad7980d2c0c456bd5b9dd36eeac5 (diff)
downloadserver-side-tls-1a41a79ca2d93bb5b86cb834cd1cc05a169221ed.zip
server-side-tls-1a41a79ca2d93bb5b86cb834cd1cc05a169221ed.tar.gz
server-side-tls-1a41a79ca2d93bb5b86cb834cd1cc05a169221ed.tar.bz2
indentation cleanup, fixes #113
Diffstat (limited to 'ssl-config-generator')
-rw-r--r--ssl-config-generator/index.html12
1 files changed, 6 insertions, 6 deletions
diff --git a/ssl-config-generator/index.html b/ssl-config-generator/index.html
index ac5ffc0..0385cd1 100644
--- a/ssl-config-generator/index.html
+++ b/ssl-config-generator/index.html
@@ -353,20 +353,20 @@ $SERVER["socket"] == ":443" {
// http://httpd.apache.org/docs/current/mod/mod_ssl.html
if (isOpenSSLSemVer(data.opensslVersion, ">=0.9.8")) {
if ((/^2\.2/.test(data.serverVersion) && isSemVer(data.serverVersion, '>=2.2.24')) || isSemVer(data.serverVersion, '>=2.4.3')) {
- data.compression = ' SSLCompression off';
+ data.compression = 'SSLCompression off';
}
}
if (isOpenSSLSemVer(data.opensslVersion, ">=0.9.8h") && isSemVer(data.serverVersion, '>=2.3.3')) {
- data.ocspStapling = '\n # OCSP Stapling, only in httpd 2.3.3 and later' + '\n' +
- ' SSLUseStapling on' + '\n' +
- ' SSLStaplingResponderTimeout 5' + '\n' +
- ' SSLStaplingReturnResponderErrors off';
+ data.ocspStapling = '\n# OCSP Stapling, only in httpd 2.3.3 and later' + '\n' +
+ 'SSLUseStapling on' + '\n' +
+ 'SSLStaplingResponderTimeout 5' + '\n' +
+ 'SSLStaplingReturnResponderErrors off';
data.ocspStaplingCache = 'SSLStaplingCache shmcb:/var/run/ocsp(128000)' + '\n';
}
if (isOpenSSLSemVer(data.opensslVersion, ">=0.9.8f")) {
if ((/^2\.2/.test(data.serverVersion) && isSemVer(data.serverVersion, '>=2.2.30')) || isSemVer(data.serverVersion, '>=2.4.11')) {
- data.sslSessionTickets = ' SSLSessionTickets off';
+ data.sslSessionTickets = 'SSLSessionTickets off';
}
}
if (isSemVer(data.serverVersion, '>=2.4.8')) {