I just found where the issue exists.
With http/3, the domain name is dropped. As you can see in your screenshot... the URI was https:///
Which is of course invalid. So we need to add in the domain name to the URI's being generated.
I use PHP with PHP-FPM on a nGinx server. To resolve this add the following line to where the fastcgi directives are located in your server block
fastcgi_param HTTP_HOST $host;
The above line would need to be added in to each virtual host server block, or alternatively you can add it in to the file fastcgi_params (for nginx) and it will apply to every server block automatically.
With http/3, the domain name is dropped. As you can see in your screenshot... the URI was https:///
Which is of course invalid. So we need to add in the domain name to the URI's being generated.
I use PHP with PHP-FPM on a nGinx server. To resolve this add the following line to where the fastcgi directives are located in your server block
fastcgi_param HTTP_HOST $host;
The above line would need to be added in to each virtual host server block, or alternatively you can add it in to the file fastcgi_params (for nginx) and it will apply to every server block automatically.
Statistics: Posted by drammar — Thu May 02, 2024 5:31 am