mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-04-25 09:25:55 +03:00
[GH-ISSUE #4070] socket and stream support #2650
Labels
No labels
awaiting feedback
bug
cannot reproduce
dns provider request
duplicate
enhancement
enhancement
enhancement
good first issue
help wanted
invalid
need more info
no certbot plugin available
product-support
pull-request
question
stale
troll
upstream issue
v2
v2
v2
v3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nginx-proxy-manager-NginxProxyManager#2650
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bkeenke on GitHub (Oct 15, 2024).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/4070
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;
}
}
`
@emircanerkul commented on GitHub (Apr 9, 2025):
+1
@TheNkl commented on GitHub (May 18, 2025):
+1
@truejcrive commented on GitHub (Nov 5, 2025):
+1