GitHub user 3BK added a comment to the discussion: Out of the box 
gunicorn_config.py doesn't allow cipher suite configuration.

At present, the gunicorn config is hard coded as shown below.
```
run_args = [
            sys.executable,
            "-m",
            "gunicorn",
            "--workers",
            str(num_workers),
            "--worker-class",
            str(args.workerclass),
            "--timeout",
            str(worker_timeout),
            "--bind",
            args.hostname + ":" + str(args.port),
            "--name",
            "airflow-webserver",
            "--pid",
            pid_file,
            "--config",
            "python:airflow.www.gunicorn_config",
        ]
```

GitHub link: 
https://github.com/apache/airflow/discussions/43338#discussioncomment-11035044

----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to: [email protected]

Reply via email to