Running a reverse proxy in front of Splunk 4.x

Posted by sgerrand on Server Fault See other posts from Server Fault or by sgerrand
Published on 2009-11-16T09:08:49Z Indexed on 2010/03/17 11:01 UTC
Read the original article Hit count: 595

Filed under:
|
|

So, I have previously installed Splunk 3.x behind a reverse proxy and downloaded the latest version (4.0.6 at time of typing) expecting it to be as easy to use as before. Sadly this was not the case. There appears to be some elements which are not being translated correctly through the reverse proxy, causing Splunk to fail.

I have used the following configuration in Apache2 to no avail:



    ServerName monitoringbox.com
    DocumentRoot /path/to/nowhere

    ProxyRequests off
    ProxyPass /splunk http://127.0.0.1:8000/splunk
    ProxyPassReverse /splunk http://127.0.0.1:8000/splunk
    
        Order  allow,deny
        Allow  from all
    

Has anyone else had more luck than me in setting up Splunk 4.x behind a reverse proxy?

© Server Fault or respective owner

Related posts about splunk

  • Running a reverse proxy in front of Splunk 4.x

    as seen on Server Fault - Search for 'Server Fault'
    So, I have previously installed Splunk 3.x behind a reverse proxy and downloaded the latest version (4.0.6 at time of typing) expecting it to be as easy to use as before. Sadly this was not the case. There appears to be some elements which are not being translated correctly through the reverse proxy… >>> More

  • Alternatives to Splunk?

    as seen on Server Fault - Search for 'Server Fault'
    I'm pretty impressed with Splunk, especially version 4. Pretty graphs, alerting (Enterprise only), and fast, accurate, searching. It's a great product. However, the cost just way too high to consider for full production use for our company. All we really need is to be able to index different logs… >>> More

  • Setting up Splunk/IronPort WSA

    as seen on Server Fault - Search for 'Server Fault'
    Hello everyone! I recently stumbled across Splunk 4 (by way of an advert on this very site...) and found that it had an "App" that's designed to work with Cisco IronPort WebSecurity and E-Mail Appliances! That's really awesome, because good IronPort reporting is something our IT-dept. is looking… >>> More

  • Thoughts on Free Splunk

    as seen on Server Fault - Search for 'Server Fault'
    I am considering implementing Splunk at my company but am leery about the financial investment. I noticed there is a free version of Splunk that seem to be good enough. Can anyone tell me if you are using the free version at your company? Do you find the free version to be adequate, or just a springboard… >>> More

  • Nagios vs Splunk

    as seen on Server Fault - Search for 'Server Fault'
    I am looking to implement log tracking at my current company. After some research it seems Nagios and Splunk are the two best options. I was wondering if there is a consensus with which is better. I understand that Splunk can be quite pricey if the non-free version is used. That being said I can… >>> More

Related posts about reverse-proxy