changed php-fpm version for piwigo

This commit is contained in:
Gitea
2022-05-04 11:43:13 +02:00
parent 897fb4156d
commit 62fe006b18
2 changed files with 8 additions and 8 deletions
+7 -7
View File
@@ -23,13 +23,13 @@ server {
ssl_trusted_certificate /etc/letsencrypt/live/webmail.solusar.de/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/webmail.solusar.de/privkey.pem;
ssl_dhparam /etc/myssl/dh4096.pem;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers "ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-CHACHA20-POLY1305:AES-256-GCM-SHA384:EECDH+AESGCM:EDH+AESGCM";
ssl_session_timeout 10m;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
#ssl_dhparam /etc/myssl/dh4096.pem;
#ssl_protocols TLSv1.2 TLSv1.3;
#ssl_ciphers "ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-CHACHA20-POLY1305:AES-256-GCM-SHA384:EECDH+AESGCM:EDH+AESGCM";
#ssl_session_timeout 10m;
#ssl_prefer_server_ciphers on;
#ssl_session_cache shared:SSL:10m;
#ssl_session_tickets off;
add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;" always;
add_header X-Content-Type-Options "nosniff" always;
+1 -1
View File
@@ -84,7 +84,7 @@ server {
# then Nginx will encounter an infinite rewriting loop when it prepends `/index.php`
# to the URI, resulting in a HTTP 500 error response.
location ~ \.php(?:$|/) {
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
fastcgi_pass unix:/run/php/php8.0-fpm.sock;
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
set $path_info $fastcgi_path_info;