Bug 58454 - NGINX: Enable ssl_preread
Summary: NGINX: Enable ssl_preread
Status: RESOLVED FIXED
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-06-23 20:49 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;
Comment 1 Repository Robot 2026-06-23 20:49:04 MSK
nginx-1.30.3-alt1 -> sisyphus:

Tue Jun 23 2026 Anton Farygin <rider@altlinux> 1.30.3-alt1
- 1.30.2 -> 1.30.3 (Fixes: CVE-2026-42055, CVE-2026-48142)
- added dav_ext module for full WebDAV support (closes: #59521)
- built stream module with ssl_preread support (closes: #38631, #58454)
- moved SysV lock file to /var/lock/subsys (closes: #37489)