Is your feature request related to a problem? Please describe.
I configured ERPNext docker-compose in AWS ECS without Traefik. There is few tweaks needed to use AWS ALB as load balancer. One particular point is, erpnext-nginx does not have a healthcheck end point, which cause ALB to terminate the erpnext-nginx ECS tasks.
Describe the solution you'd like
Following snippet in frappe_docker\build\frappe-nginx\nginx-default.conf.template
Is your feature request related to a problem? Please describe. I configured ERPNext docker-compose in AWS ECS without Traefik. There is few tweaks needed to use AWS ALB as load balancer. One particular point is, erpnext-nginx does not have a healthcheck end point, which cause ALB to terminate the erpnext-nginx ECS tasks.
Describe the solution you'd like Following snippet in frappe_docker\build\frappe-nginx\nginx-default.conf.template
location /health-check { access_log off; return 200 'A-OK!';
because default content-type is application/octet-stream,
}
Describe alternatives you've considered Add Traefik back between ALB and nginx (ALB --> Traefik --> Nginx)
Additional context I think Traefik is not required in the context of AWS ECS