Jump to content
We've recently updated our Privacy Statement, available here ×
  • Nginx as a proxy for TIBCO JasperReports® Server


    swood_1
    • Features: JasperReports Server Version: v7.2, v7.1 Product: JasperReports® Server

    TIBCO JasperReports® Server needs a standard proxy configuration for nginx with one addition.

    See some general proxy configuration discussion Best Practices for deploying JasperReports Server.

    The example proxy_pass here is doing SSL termination.

        location /jasperserver-pro {
            proxy_pass http://localhost:8080/jasperserver-pro;
            proxy_set_header Host $host;
            proxy_set_header X-Forwarded-For $host;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header X-Real_IP $remote_addr;
        }
    
    

    The one specific nginx setting needed for JasperReports Server is:

    # needed for CSRF and JasperReports Server
    underscores_in_headers on;
    

    Folks have run into CSRF issues Stackoverflow


    User Feedback

    Recommended Comments

    There are no comments to display.



    Create an account or sign in to comment

    You need to be a member in order to leave a comment

    Create an account

    Sign up for a new account in our community. It's easy!

    Register a new account

    Sign in

    Already have an account? Sign in here.

    Sign In Now

×
×
  • Create New...