Die angegebene PHP-Version ist nur als Beispiel zu sehen. Es wird jeweils die PHP-Version der aktuellen unterstützen Debian Version konfiguriert.
location /benno { index index.php; alias /srv/benno/bennoweb/htdocs; autoindex off; location ~ \.php$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; fastcgi_index index.php; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $request_filename; } # Plugin API (>= benno-web 2.8.7) location ~ rest.php(/.*)$ { fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php/php7.3-fpm.sock; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $request_filename; fastcgi_param PATH_INFO $fastcgi_path_info; } }