Ngx Http Proxy Connect Module Versions Save

A forward proxy module for CONNECT request handling

v0.0.6

1 month ago

Changes

  • Added support for the latest versions of Nginx (1.25.4) and OpenResty (1.25.3.1).

Full Changelog: https://github.com/chobits/ngx_http_proxy_connect_module/compare/v0.0.5...v0.0.6

v0.0.5

11 months ago

Changes

Changes for automating builds and tests with GitHub Actions

Changes for documentation

Full Changelog: link

v0.0.4

1 year ago

Directive change

proxy_connect_data_timeout (new directive)

Syntax: proxy_connect_data_timeout time Default: 60s Context: server

Sets the timeout between two successive read or write operations on client or proxied server connections. If no data is transmitted within this time, the connection is closed.

proxy_connect_read_timeout

Defines a timeout for reading a response from the proxied server. The timeout is set only between two successive read operations, not for the transmission of the whole response. If the proxied server does not transmit anything within this time, the connection is closed.

Deprecated.

It has the same function as the directive proxy_connect_data_timeout for compatibility. You can configure only one of the directives (proxy_connect_data_timeout or proxy_connect_read_timeout).

proxy_connect_send_timeout

Sets a timeout for transmitting a request to the proxied server. The timeout is set only between two successive write operations, not for the transmission of the whole request. If the proxied server does not receive anything within this time, the connection is closed.

Deprecated, it has no function. (For compatibility, you can still configure it, but it has no actual effect.)

Bugfix

Others

Full Changelog: v0.0.4 pull requests

v0.0.3

1 year ago

ChangeLog

Full Changelog: For more details, see these pull requests.

New Contributors

Compatibility

v0.0.2

3 years ago

Changelog

  • Bugfix: updated error log and debug log and make it more readable
  • Feature: new variables for debugging: $proxy_connect_resolve_time and $proxy_connect_connect_time
  • Feature: modify CONNECT response via $proxy_connect_response variable or proxy_connect_response directive

For more details, see these pull requests.

Compatibility

v0.0.1

4 years ago

Changelog

  • First release for ngx_http_proxy_connect_module.

All the merged pull request: link

Compatibility

Documentation

For complete documentation, see v0.0.1/README.md