nginx proxy_pass works on http but fails on https
When I pass http:localhost:9000 to proxy_pass then it is working. But When I pass https:localhost:9000 then it fails pid /var/run/nginx.pid; worker_processes 2; events { worker_connections 65536; use epoll; multi_accept on; } http { limit_req_zone $binary_remote_addr zone=basic_limit:10m rate=20r/s; limit_conn_zone $binary_remote_addr zone=limit_conn:1m; keepalive_timeout 65; keepalive_requests 100000; sendfile on; tcp_nopush on; tcp_nodelay on; client_body_buffer_size 128k; client_max_body_size 10m; client_header_buffer_size … Read more