From: Marek Bachmann Date: Thu, 24 Nov 2022 18:20:26 +0000 (+0100) Subject: Replaced hostname in rewrite url for forwarding http to https by $server_name variabl... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=33088b3446fe182deac39c629a216e89567dad71;p=friendica.git Replaced hostname in rewrite url for forwarding http to https by $server_name variable instead of hard coded example.com url Updated default PHP-FPM path from 7.0 to 7.4 --- diff --git a/mods/sample-nginx.config b/mods/sample-nginx.config index 63f73e01e4..5530bfaefd 100644 --- a/mods/sample-nginx.config +++ b/mods/sample-nginx.config @@ -35,7 +35,7 @@ server { index index.php; root /var/www/friendica; - rewrite ^ https://friendica.example.net$request_uri? permanent; + rewrite ^ https://$server_name$request_uri? permanent; } ## @@ -120,7 +120,7 @@ server { # fastcgi_pass 127.0.0.1:9000; # With php7.0-fpm: - fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; + fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; include fastcgi_params; fastcgi_index index.php;