Monitoring Splunk

Redirect port 80 to port 443?

msarro
Builder

Hi everyone. I just installed a custom cert this afternoon on our development search head, and after some stumbling we were able to get it to work. We ended up having to set the httpport field to 443, and then the configurations given in these docs worked fine:
http://docs.splunk.com/Documentation/Splunk/5.0.3/Admin/Webconf
http://docs.splunk.com/Documentation/Splunk/5.0.3/Security/TroubleshootyourSplunkWebauthentication
http://docs.splunk.com/Documentation/Splunk/5.0.3/Security/TurnonbasicencryptionwithSplunkWeb

Now, the only issue is if a user types in our URL, it will show a 404 error. They have to know to manually type in http*S*://my.example.com to go to splunk.

In a perfect world there would be a httpport option for web.conf, and also a httpsport option for web.conf. If you went to the http, it would perform the redirect elegantly.

Is there any easy way to automatically redirect the http request on port 80 to the https request on port 443? Any help would be appreciated. Thanks!

Tags (1)
0 Karma

jtrucks
Splunk Employee
Splunk Employee

Since you are talking about changing protocols from HTTP to HTTPS, you need to do this with something that can send the browser a redirect. Consider putting apache or some other HTTP server on port 80 answering with HTTP and issuing an HTTP redirect code. Another method is a reverse proxy to connect to the other port. Lastly, just have an HTTP server answer and display the default index page with a with a delay of 0 seconds so the redirect used is immediate.

--
Jesse Trucks
Minister of Magic

adrianathome
Communicator

Have you tried to redirect via iptables?
iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-ports 443

0 Karma

jzhang723
Engager

I downvoted this post because not working at all

0 Karma

cam343
Path Finder

This won't work due to HTTP GET requests encountering HTTPS session establishment requests

0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...