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
This commit is contained in:
Marek Bachmann 2022-11-24 19:20:26 +01:00
parent e1b259fc4c
commit 33088b3446
1 changed files with 2 additions and 2 deletions

View File

@ -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;