mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
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:
parent
e1b259fc4c
commit
33088b3446
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue