Replies: 2 comments 6 replies
-
Are you sure you have the intermediate certificate there as well? Assuming your cert is provided by public CA. If you have a private CA, the same question + is your root CA cert installed on the client? |
Beta Was this translation helpful? Give feedback.
5 replies
-
Not related to TLS, but:
I'd suggest using the symlinked path /opt/netbox/netbox/static/ there. Otherwise, if you forget to edit this file you will get strange problems after upgrading NetBox. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I've followed the install down to a T but for some reason HTTPS is warning that it's not secure.
Below is my /etc/nginx/sites-enabled/netbox
server {
listen [::]:443 ssl ipv6only=off;
}
server {
# Redirect HTTP traffic to HTTPS
listen [::]:80 ipv6only=off;
server_name _;
return 301 https://$host$request_uri;
}
Any pointers will be appreciated.
Thanks,
Sky
Beta Was this translation helpful? Give feedback.
All reactions