Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hang issue in NGINX Stream SSL Proxy Performance #1975

Open
fero-majeeth opened this issue Dec 10, 2024 · 0 comments
Open

Hang issue in NGINX Stream SSL Proxy Performance #1975

fero-majeeth opened this issue Dec 10, 2024 · 0 comments

Comments

@fero-majeeth
Copy link

I have tested NGINX with a stream SSL proxy using the Apache Benchmark (ab) tool. I am observing a hang while processing the last 50-100 requests, resulting in a timeout.

  1. Please suggest any configuration changes to avoid hangs and improve stream SSL performance.
  2. Is it good to use the ab tool to test a stream SSL proxy? If not, please suggest a good benchmark tool for stream SSL.”

stream {
upstream backend {
server 11.0.0.5:8000;
}

    server {
            listen 1020 ssl;
            ssl_certificate /nginx/certs/server.crt.pem;
            ssl_certificate_key /nginx/certs/server.key.pem;
            ssl_client_certificate /nginx/certs/RootCA.crt.pem;
            proxy_pass backend;
            proxy_ssl on;
            proxy_ssl_session_reuse off;
            proxy_ssl_asynch on;
            proxy_ssl_ciphers AES256-GCM-SHA384;
    }

}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant