cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
369
Views
0
Helpful
2
Replies

Adding port in http header information??

frank.aceto
Level 1
Level 1

I have a standard HTTPS to HTTP conversion going through a CSS 11506. The CSS terminates the SSL and then passes the cleartext traffic to the backend server via port 8011. The backend server receives this traffic on port 8011 but the http header does not specify port 8011 at the end of the url (e.g. http://mywebsite.com:8011/content but only passes through http://mysebsite.com/content). The backend server thinks this traffic has come in on port 80 and reports a 302 error (redirect). Is there some way the CSS can add the :8011 port number into the http header for all traffic bound to the backend server?

Many thanks,

Frank

2 Replies 2

Gilles Dufour
Cisco Employee
Cisco Employee

No, there is no way to add the port to the host info.

You can run 2 different instances of the server - each one on its own port - so they don't need to verify the port inside the http request.

Gilles.

Cheers for the reply. I'll give it a try and see how I go.

Frank