hi all,
testing out a new collectiveaccess dev/php8 setup with
- nginx 1.20.1-16
- mariadb 10.5.22-1
- php 8.3.12-1
after the web install process completes the login link gives a 404 error until i update the opening of /etc/nginx/default.d/php.conf
from location ~ \.php$ {
to:
location ~ \.(php|phar)(/.*)?$ {
fastcgi_split_path_info ^(.+\.(?:php|phar))(/.*)$;
had this in my notes from a while back and wondering if this is a bad workaround to something more obvious? thanks