nginx-proxy-manager icon indicating copy to clipboard operation
nginx-proxy-manager copied to clipboard

socket and stream support

Open bkeenke opened this issue 1 year ago • 3 comments

Please add the use of unix://dir/app.socket

and it would be cool to add the use of a different type of stream, using SNI it would be very useful for proxying for the X-Ray reality protocol. what is there is for something else and it won't work to do it that way

required: ngx_stream_module which is in the package - nginx-extras

** example:**

`user nginx; worker_processes auto;

load_module /usr/lib/nginx/modules/ngx_stream_module.so;

error_log /logs/nginx_error; pid /var/run/nginx.pid;

events { worker_connections 1024; } stream { upstream reality { server xray:12000; } map_hash_bucket_size 128; map $ssl_preread_server_name $sni_name { example.com reality; default other; } server { listen 443 reuseport; proxy_pass $sni_name; proxy_protocol on; ssl_preread on; } } `

bkeenke avatar Oct 15 '24 15:10 bkeenke

+1

emircanerkul avatar Apr 09 '25 15:04 emircanerkul

+1

TheNkl avatar May 18 '25 12:05 TheNkl

+1

truejcrive avatar Nov 05 '25 23:11 truejcrive