Issue with Nginx and 1.2 Beta

http {

    sendfile on;
    tcp_nopush on;
    tcp_nodelay on;
    keepalive_timeout 65;
    types_hash_max_size 2048;
    include /etc/nginx/mime.types;
    default_type application/octet-stream;
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
    ssl_prefer_server_ciphers on;
    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

server {
listen xx.xx.xx.xx:3000 ssl;
listen xx.xx.xx.xx::7547 ssl;
listen xx.xx.xx.xx::7557 ssl;
listen xx.xx.xx.xx::7567 ssl;
ssl_certificate /etc/nginx/ssl/certificate.ca.crt;
ssl_certificate_key /etc/nginx/ssl/certificate.ca.key;

location / {
proxy_ssl_session_reuse on;
proxy_http_version 1.1;
proxy_buffering off;
proxy_pass_header Authorization;
proxy_set_header Host $host;
proxy_set_header Connection “Keep-Alive”;
proxy_set_header X-Forwarded-User $remote_user;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:$server_port;
}
}
}

2020-08-12T03:51:44.339Z [WARN] 127.0.0.1 E82C6D-SR616ac-E82C6D1DB1AE: Channel has faulted; channel=“inform” retries=1 faultCode=“too_many_commits” faultMessage=“Too many commit iterations”

Get a lot of these errors when going through SSL and nginx. When I do it through http:// and direct, these issues do not show up. Not sure what else to look at.

BTW, i’m running Ubuntu 20 Server