• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How can I fix redirect error https to http

 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey guys,

I have 2 environments preprod and prod.They have exactly same things.I configured on their console for redirect http to https.(by the way they have also LB) Preprod is okey but İn prod side when I try to login with url (https://www.sample.com) redirect http url.I did same things both environments.But prod still same how can I fix it?
 
Ranch Hand
Posts: 270
15
Android Angular Framework Spring AngularJS Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi, Dylan.

If it helps, be aware that one difference between https and http is the port number.  If you do not provide an explicit port setting (8443, 8080, for instance), you get a default mapping.  Maybe you already know this, but here goes.

Http goes to port 80.
Https goes to 443.
 
reply
    Bookmark Topic Watch Topic
  • New Topic