About nginx to implement jira reverse proxy

About nginx to implement jira reverse proxy

Summary: Configure nginx reverse proxy jira and implement https Configure Tomcat In this article, we set up JIRA to be accessible at the address http://jira.aniu.so/jira (standard HTTP port 80), while JIRA itself can listen on port 8080 using the context path /jira.

Configure nginx reverse proxy jira

Configure Tomcat

Modify the configuration file server.xml (in the jira installation directory)

Before:
<Context docBase="${catalina.home}/atlassian-jira" path="" reloadable="false" useHttpOnly="true"> After change: <Context docBase="${catalina.home}/atlassian-jira" path="/jira" reloadable="false" useHttpOnly="true">

Configuring the Connector

Add the proxyName and proxyPort elements (replacing them with the appropriate attributes), and another connector below - this is for troubleshooting purposes to bypass the proxy:

<!-- Nginx Proxy Connector --> # Only use nginx without https
<Connector port="8080" maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false" maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443" acceptCount="100" disableUploadTimeout="true" proxyName="jira.aniu.so" proxyPort="80"/> <!-- OPTIONAL,Nginx Proxy Connector with https --> # 本文使用这次方式<Connector port="8081" maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false" maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443" acceptCount="100" disableUploadTimeout="true" proxyName="jira.aniu.so" proxyPort="443" scheme="https" secure="true"/> <!-- Standard HTTP Connector --> <Connector port="8082" maxThreads="150" minSpareThreads="25" connectionTimeout="20000" enableLookups="false" maxHttpHeaderSize="8192" protocol="HTTP/1.1" useBodyEncodingForURI="true" redirectPort="8443" acceptCount="100" disableUploadTimeout="true"/>

The above comments are original, the following are modified by myself

Configure nginx's virtual host:

After that, restart nginx and jira and it will work

The system panel displays normally:

This is the end of this article about the problem of implementing jira reverse proxy with nginx. For more relevant nginx reverse proxy content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Explanation of nginx load balancing and reverse proxy
  • Getting Started with Nginx Reverse Proxy
  • Nginx reverse proxy configuration to remove prefix case tutorial
  • Full process record of Nginx reverse proxy configuration
  • How to implement Nginx reverse proxy for multiple servers

<<:  Detailed explanation of the application of meta tags in mobile platform development

>>:  Hello dialog box design experience sharing

Recommend

Using Docker to create static website applications (multiple ways)

There are many servers that can host static websi...

Detailed explanation of json file writing format

Table of contents What is JSON Why this technolog...

VMware workstation 12 install Ubuntu 14.04 (64 bit)

1. Installation Environment Computer model: Lenov...

Summary of the execution issues between mysql max and where

Execution problem between mysql max and where Exe...

Database index knowledge points summary

Table of contents First Look Index The concept of...

Detailed process of decompressing and installing mysql5.7.17 zip

1. Download address https://dev.mysql.com/downloa...

How to install PHP7.4 and Nginx on Centos

Prepare 1. Download the required installation pac...

Commonly used HTML format tags_Powernode Java Academy

1. Title HTML defines six <h> tags: <h1&...

Centos7.5 installs mysql5.7.24 binary package deployment

1. Environmental preparation: Operating system: C...

Vue example code using transition component animation effect

Transition document address defines a background ...

Teach you how to use Portainer to manage multiple Docker container environments

Table of contents Portainer manages multiple Dock...

Vue components dynamic components detailed explanation

Table of contents Summarize Summarize When the ar...

How to use boost.python to call c++ dynamic library in linux

Preface Recently I started using robot framework ...