So I'm working on GAE Flex for my Craft CMS app. I'm using nginx and a mysql_tunnel on supervisor for this services.
I'm trying to configure the Health Checks Google offers to make sure that the services are up, but for some reason it is not working.
liveness_check:
path: "/_ah/health.php"
check_interval_sec: 30
timeout_sec: 4
failure_threshold: 2
success_threshold: 2
This is my config on the app.yaml file and when I check the health checks on GAE it shows them returning a 301 instead of the 200 expected. I already tested turning my services down on the container and it shows the app as healthy even though it is not.