Bug 58454 - NGINX: Enable ssl_preread
Summary: NGINX: Enable ssl_preread
Status: ASSIGNED
Alias: None
Product: Sisyphus
Classification: Development
Component: nginx (show other bugs)
Version: unstable
Hardware: x86_64 Linux
: P5 normal
Assignee: Anton Farygin
QA Contact: qa-sisyphus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2026-03-31 15:14 MSK by stalker
Modified: 2026-03-31 15:26 MSK (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description stalker 2026-03-31 15:14:07 MSK
Добавить для модуля stream опцию 
--with-stream_ssl_preread_module


нужно для

 map $ssl_preread_server_name $backend {
    test.example.com ingress_test;
    api.example.com   ingress_api;
    default ingress_test;
  }

  upstream ingress_test {
    server 192.168.150.70:30443;

  }

  upstream ingress_api {
    server 10.10.0.70:30443;

  }

  server {
    listen 443;

    proxy_pass $backend;

    ssl_preread on;