mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-04-25 09:25:55 +03:00
[GH-ISSUE #80] SSL Cipher error #71
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#71
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 @checkerbomb on GitHub (Feb 21, 2019).
Original GitHub issue: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/80
I've installed a custom SSL certificate, and played with all the settings, but currently receiving an SSL error. I have ports 80/443 forwarded through the firewall to the nginx-proxy-host container. I've tried toggling things on/off in the Proxy Host settings with no change. Here are the basic settings I'm trying to use:
Here is the error I receive.
Chrome:

Firefox:

@jc21 commented on GitHub (Feb 25, 2019):
Can you use an online SSL checker to see what they say about the setup?
@checkerbomb commented on GitHub (Feb 25, 2019):
Thanks for the reply. Based on these tests, it seems to me that the SSL cert is not being presented by nginx. Here are the results from the first two links. I should also note that I am using this same cert without issue on pfSense via haproxy, which I am attempting to replace with nginx-proxy-manager. I have also double checked that firewall and NAT rules are setup correctly, and reuploaded the cert and reconfigured the proxy host as well.
@jc21 commented on GitHub (Feb 25, 2019):
Ok that's super weird. Can you find the generated nginx config file for this host, it will be in your
data/nginx/proxy_hostfolder, paste the contents here without your domain name for privacy@checkerbomb commented on GitHub (Feb 26, 2019):
Sure thing. The formatting of the file was getting severely screwed up by Markdown, so I've attached it instead.
proxy-conf.txt
@jc21 commented on GitHub (Feb 27, 2019):
Ok so you can't use
my.domain.com/portaineras the hostname, because it contains a path. When you ssl checkmy.domain.com/portainerit's actually checkingmy.domain.comand that doesn't (presumably) has configuration - and won't have ssl configured.It's only currently possible to create
portainer.domain.comhost and apply a custom wildcard cert fordomain.comto that proxy host.Refer to #74 for possible future support of sub-folder forwarding.
@checkerbomb commented on GitHub (Feb 27, 2019):
OK, thanks for the feedback. I will wait until this has been implemented, as setting up a subdomain for each and every application I need to forward (currently 12 but steadily increasing) would be cumbersome and also defeat the purpose of the custom SSL cert I have previously purchased for this specific subdomain.
I will say that I personally believe reverse proxying based on path is a critical feature and one that many will make use of. Nginx already supports it natively. https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/
Thanks! :)