Skip to content

Commit

Permalink
Use SSLCACertificateFile instead as SSLCertificateChainFile which is …
Browse files Browse the repository at this point in the history
…obsolete since Apache 2.4.8
  • Loading branch information
Sebastian-Roth committed Jan 20, 2020
1 parent 30c4200 commit 6f7d462
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/common/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1836,7 +1836,7 @@ EOF
echo " SSLHonorCipherOrder On" >> "$etcconf"
echo " SSLCertificateFile $webdirdest/management/other/ssl/srvpublic.crt" >> "$etcconf"
echo " SSLCertificateKeyFile $sslprivkey" >> "$etcconf"
echo " SSLCertificateChainFile $webdirdest/management/other/ca.cert.der" >> "$etcconf"
echo " SSLCACertificateFile $webdirdest/management/other/ca.cert.pem" >> "$etcconf"
echo " <Directory $webdirdest>" >> "$etcconf"
echo " DirectoryIndex index.php index.html index.htm" >> "$etcconf"
echo " </Directory>" >> "$etcconf"
Expand Down
2 changes: 1 addition & 1 deletion packages/web/lib/fog/system.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private static function _versionCompare()
public function __construct()
{
self::_versionCompare();
define('FOG_VERSION', '1.5.7.95');
define('FOG_VERSION', '1.5.7.96');
define('FOG_SCHEMA', 267);
define('FOG_BCACHE_VER', 133);
define('FOG_SVN_REVISION', 6080);
Expand Down

0 comments on commit 6f7d462

Please sign in to comment.