ngx_http_proxy_connect_module icon indicating copy to clipboard operation
ngx_http_proxy_connect_module copied to clipboard

Make module not require nginx it compiled with

Open Fjox opened this issue 4 months ago • 1 comments

Why you need it?

Requiring the nginx the module was required with defeats the purpose of a mudle

How it could be?

Module is independant of nginx it was compiled with

Fjox avatar Aug 20 '25 09:08 Fjox

It’s hard to implement this independently of Nginx, because this module depends on Nginx’s underlying implementation to support the CONNECT method. The problem is that the current version of Nginx doesn’t support it, so we need to modify and patch the Nginx core. Since the core differs slightly between Nginx versions, the patch also varies. As a result, this module is tied to specific Nginx versions.

chobits avatar Sep 23 '25 08:09 chobits