NginxProxyManager / NginxProxyManager/nginx-proxy-manager
socket and stream support
Nobody has claimed this yet.
- Dominant language
- TypeScript
- Stars
- 34.2k
- Forks
- 3.9k
- Avg merge
- 21h 12m
- Merged PRs (30d)
- 20
Description
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;
}
}
`
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the issue's ngx_stream_module requirement, nginx-extras package note, and example stream configuration. Determine how Unix socket upstreams and SNI-based stream proxying would fit the project, then define tests or configuration behavior that demonstrate both requested capabilities are supported.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- nginx
- Domain
- networking
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Quiet
- Clarity
- Needs clarification
- Newbie friendliness
- 30/100