Status Update
Comments
va...@google.com <va...@google.com>
su...@google.com <su...@google.com> #2
Hello
Thank you for reaching out to us!
This issue seems to be outside of the scope of Issue Tracker. This Issue Tracker is a forum for end users to report bugs and request features on Google Cloud products. Please go through
I recommend you to
I'm going to close this thread which will no longer be monitored. In case you want to report a new issue, please do not hesitate to create a new Issue Tracker describing your issue.
Thank you
di...@formitize.com <di...@formitize.com> #3
This is an issue within App Engine Flexible though, the rewrite rule supplied by nginxserver.conf when going gcloud app deploy - which I have no control over, cannot be modified ?
Description
Hi there,
I recently migrated a service from PHP 7.3 to 8.2 - I noticed that all of my files were suddenly being re-routed via index.php.
I pulled down the docker image and found that the layers/google.php.webconfig/webconfig/nginxserver.conf file there is a rewrite rule that is playing havoc
All it really needs is a simple
I have tried including that block in my nginx-app.conf file however it isn't being reached.
However the rewrite is happening outside of location so it is causing EVERYTHING to be re-routed to index.php for example if I try to access a static resource /js/app.js, fastcgi is sending the following URI to index.php index.php/js/app.js - same for all resources (css/images). My current solution was to modify index.php to serve the static resources - however this is fairly unnecessary
Please check my test nginx conf here; if you remove the rewrite rule the correct resource loads.