socks-nginx-module icon indicating copy to clipboard operation
socks-nginx-module copied to clipboard

An nginx_http_proxy_module fork with SOCKS5 support

Results 11 socks-nginx-module issues
Sort by recently updated
recently updated
newest added

How can I use this module to connect to some https connection on some specific port. The website says all `ngx_http_proxy_module` directives are supported. How to use `proxy_ssl_certificate`, etc with...

feature

## Configure Options: ``` ./configure --prefix=/etc/nginx \ --sbin-path=/usr/sbin/nginx \ --modules-path=/usr/lib64/nginx/modules \ --conf-path=/etc/nginx/nginx.conf \ --error-log-path=/var/log/nginx/error.log \ --pid-path=/var/run/nginx.pid \ --lock-path=/var/run/nginx.lock \ --user=nginx \ --group=nginx \ --build=Fedora \ --builddir=nginx-1.18.0 \ --with-select_module \ --with-poll_module...

Looks like only support domain connect mode for now? how to support ipv4 mode ? ``` buf[0] = NGX_HTTP_SOCKS_VERSION; buf[1] = NGX_HTTP_SOCKS_CMD_CONNECT; buf[2] = NGX_HTTP_SOCKS_RESERVED; //buf[3] = NGX_HTTP_SOCKS_ADDR_DOMAIN_NAME; buf[3] =...

I would appreciate it if you could convert the config file to the new style so it could be built as a dynamic module for nginx > 1.9.13. I use...

i am trying to build nginx 1.11.8 on cent os x64 with socks-nginx-module, i have tried building with 1.11.5 and it completes successfully, but with 1.11.8 i get -o objs/addon/src/ngx_http_socks_upstream.o...

Ongoing work on a complete rewrite of this module

what i was doing is , i was using socks-nginx-module to connect to TOR network which was listening on 127.0.0.1:9050 and then using Host header to request .onion site ,...

bug

Hi, I'm using the socks plugin to route a request via a socks proxy. I have tried a simple loopback i.e. request example.com -> (socks proxy) -> example.com Request example.com...