DirectAdmin Support:
Hello,The problem is related to new Apache version 2.4.64 + Nginx configuration (nginx_apache).We already have the report to our developers to check it closer and get fixed ASAP.Using Apache 2.4.63 + Nginx works fine.Thank you.
location /
{
|CUSTOM2|
# access_log off;
proxy_buffering |PROXY_BUFFERING|;
proxy_pass http://|PROXY_IP|:|PORT_8080|;
proxy_set_header X-Client-IP $remote_addr;
proxy_set_header X-Accel-Internal /nginx_static_files;
proxy_set_header Host $host;
proxy_ssl_name $host; #<------add this 2 lines
proxy_ssl_server_name on; #<------add this 2 lines
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_hide_header Upgrade;
}
location /nginx_static_files/
{
# access_log /var/log/nginx/access_log_proxy;
alias |DOCROOT|/;
internal;
}