[framadate] PHP 7.4

certbot_on_virtu
_shirenn 2021-11-16 16:26:38 +01:00
parent 6a576b2ae1
commit 5e0498e5cb
2 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@ const IMAGE_TITRE = 'images/logo-framadate.png';
const URL_PROPRE = true;
// Use REMOTE_USER data provided by web server
const USE_REMOTE_USER = true;
const USE_REMOTE_USER = false;
// Path to the log file
const LOG_FILE = 'admin/stdout.log';

View File

@ -32,7 +32,7 @@ server {
location ~ \.php$ {
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
try_files $uri $uri/ =401;
}
@ -54,7 +54,7 @@ server {
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
}