[GH-ISSUE #1055] Implementation of another service on port 443 #880

Closed
opened 2026-02-26 06:34:47 +03:00 by kerem · 1 comment
Owner

Originally created by @talesam on GitHub (May 1, 2021).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1055

Maybe someone can help me .. I need to implement a proxy to use port 443 for those who access from the outside, but I'm not sure how to do this ...

An example is on this site: https://henrywithu.com/coexistence-of-web-applications-and-vless-tcp-xtls/

I believe it would be something like this ..

stream {
        map $ssl_preread_server_name $example_multi {
                webgame.example.com xtls;
        }
        upstream xtls {
                server 127.0.0.1:20001; # Xray port
        }
        server {
                listen 443      reuseport;
                listen [::]:443 reuseport;
                proxy_pass      $example_multi;
                ssl_preread     on;
        }
}

Originally created by @talesam on GitHub (May 1, 2021). Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1055 Maybe someone can help me .. I need to implement a proxy to use port 443 for those who access from the outside, but I'm not sure how to do this ... An example is on this site: https://henrywithu.com/coexistence-of-web-applications-and-vless-tcp-xtls/ I believe it would be something like this .. ``` stream { map $ssl_preread_server_name $example_multi { webgame.example.com xtls; } upstream xtls { server 127.0.0.1:20001; # Xray port } server { listen 443 reuseport; listen [::]:443 reuseport; proxy_pass $example_multi; ssl_preread on; } } ```
kerem 2026-02-26 06:34:47 +03:00
Author
Owner

@chaptergy commented on GitHub (Oct 17, 2021):

Not yet possible, but a PR exists making it possible. see https://github.com/jc21/nginx-proxy-manager/issues/853

<!-- gh-comment-id:945147099 --> @chaptergy commented on GitHub (Oct 17, 2021): Not yet possible, but a PR exists making it possible. see https://github.com/jc21/nginx-proxy-manager/issues/853
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/nginx-proxy-manager-NginxProxyManager#880
No description provided.