skip to Main Content

AWS ELB keeps returning 404 Health checks failed with these codes: [404] – Nginx

I'm serving my node js application with pm2. nginx.conf file is user nginx; worker_processes auto; error_log /var/log/nginx/error.log; pid /run/nginx.pid; # Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. include /usr/share/nginx/modules/*.conf; events { worker_connections 1024; } http { log_format main '$remote_addr - $remote_user [$time_local]…

VIEW QUESTION

reverse proxy and Load balancer – Apache

Here is the Apache Reverse proxy and load balancer, the website/reports url is not coming up <IfModule mod_proxy.c> ProxyPreserveHost On <Proxy balancer://app0102> BalancerMember https://serverapp01.com BalancerMember https://serverapp02.com </Proxy> ProxyPass / "balancer://app0102/" ProxyPassReverse "/" "balancer://app0102/" </IfModule> if I point to single server,…

VIEW QUESTION
Back To Top
Search