From 18c87baec863bfd931385e6cc5793cc7ed5f41ed Mon Sep 17 00:00:00 2001 From: Patrik Kernstock Date: Tue, 31 Dec 2019 03:53:12 +0100 Subject: [PATCH] Fix dhparam indent --- lib/Froxlor/Cron/Http/Nginx.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Froxlor/Cron/Http/Nginx.php b/lib/Froxlor/Cron/Http/Nginx.php index 3563e7e2..9de02b90 100644 --- a/lib/Froxlor/Cron/Http/Nginx.php +++ b/lib/Froxlor/Cron/Http/Nginx.php @@ -695,7 +695,7 @@ class Nginx extends HttpConfigBase if (! file_exists($dhparams)) { \Froxlor\FileDir::safe_exec('openssl dhparam -out ' . escapeshellarg($dhparams) . ' 4096'); } - $sslsettings .= 'ssl_dhparam ' . $dhparams . ';' . "\n"; + $sslsettings .= "\t" . 'ssl_dhparam ' . $dhparams . ';' . "\n"; } // When <1.11.0: Defaults to prime256v1, similar to first curve recommendation by Mozilla. // (When specifyng just one, there's no fallback when specific curve is not supported by client.)