On clicking devices listed on rack, device URL redirect happens with http instead of https #11523
NagaKarthi
started this conversation in
General
Replies: 1 comment 1 reply
-
Since you are using ELB to do TLS for you (and it uses plain http to NetBox EC2), you need to set
Note that there is no use configuring the |
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,
On the Racks, If I click on any saved device in the rack(Front or Rear), the URL redirect to the device page is happening with http instead of https. This behavior is found on existing device and also in addition of a new device from rack page itself. So far I was able to find this problem only with redirect to device from rack page.
Current Setup I have is:
ELB <----HTTPS to HTTP-----> EC2(Netbox)
The Below is my nginx config:
server {
listen 80;
}
server {
# Redirect HTTP traffic to HTTPS
listen 80;
server_name _;
return 301 https://$host$request_uri;
}
Beta Was this translation helpful? Give feedback.
All reactions