Re: httpd error.log

2022-09-02 Thread Mike Fischer
Hi Paul! > Am 02.09.2022 um 14:52 schrieb Paul Pace : > > On 2022-09-01 13:20, Mike Fischer wrote: >>> Am 01.09.2022 um 21:49 schrieb latin...@vcn.bc.ca: > Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: > historia.agroena.org Right, try something like this and watch the

Re: httpd error.log

2022-09-02 Thread Mike Fischer
> Am 01.09.2022 um 11:05 schrieb Mischa : > > Those are indeed reasons for it to present the error. > In my experience this also happens when a non-existent PHP script is > requested, as the match is on *.php. I tried to create a testing setup to verify this, but I keep getting „Access

Re: httpd error.log

2022-09-01 Thread latincom
> >> Am 01.09.2022 um 21:49 schrieb latin...@vcn.bc.ca: >> >>> Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: historia.agroena.org >>> >>> Right, try something like this and watch the error.log: >>> >>> curl --url 'https://historia.agroena.org/i-dont-exist.php' >/dev/null >>>

Re: httpd error.log

2022-09-01 Thread Mike Fischer
> Am 01.09.2022 um 21:49 schrieb latin...@vcn.bc.ca: > >> >>> Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: >>> >>> historia.agroena.org >> >> Right, try something like this and watch the error.log: >> >> curl --url 'https://historia.agroena.org/i-dont-exist.php' >/dev/null >> >> HTH

Re: httpd error.log

2022-09-01 Thread Mike Fischer
> Am 01.09.2022 um 11:13 schrieb latin...@vcn.bc.ca: > > historia.agroena.org Right, try something like this and watch the error.log: curl --url 'https://historia.agroena.org/i-dont-exist.php' >/dev/null HTH Mike

Re: httpd error.log

2022-09-01 Thread latincom
> This happens when PHP-FPM can’t find the script to execute. > > One reason could be that you fiddled with the settings and let PHP-FPM run > without chroot(2), while httpd(8) is running with chroot(2). > > But it might also be a misconfiguration of in httpd.conf. Not sure about > all of the

Re: httpd error.log

2022-09-01 Thread Mischa
Those are indeed reasons for it to present the error. In my experience this also happens when a non-existent PHP script is requested, as the match is on *.php. Mischa On 2022-09-01 10:41, Mike Fischer wrote: This happens when PHP-FPM can’t find the script to execute. One reason could be

Re: httpd error.log

2022-09-01 Thread Mike Fischer
This happens when PHP-FPM can’t find the script to execute. One reason could be that you fiddled with the settings and let PHP-FPM run without chroot(2), while httpd(8) is running with chroot(2). But it might also be a misconfiguration of in httpd.conf. Not sure about all of the potential