IIS与JIRA的反向代理配置

JIRA配置修改

JIRA与IIS ARR的集成,除了上篇(Visual SVN IIS反向代理设置)中讲到的基本的ARR配置之外,还需要在JIRA安装目录的confserver.xml文件中做一个小的修改.

<Connector acceptCount="100" connectionTimeout="20000" disableUploadTimeout="true" enableLookups="false" maxHttpHeaderSize="8192" maxSpareThreads="75" maxThreads="150" minSpareThreads="25" port="8080" protocol="HTTP/1.1" redirectPort="8443" useBodyEncodingForURI="true"
proxyName="jira.example.com" proxyPort="80"/>

IIS UrlRewriter Rule

        <rewrite>
            <rules>
                <rule name="jira.example.com" stopProcessing="true">
                    <match url="(.*)" />
                    <action type="Rewrite" url="http://127.0.0.1:8080/{R:1}" />
                </rule>
            </rules>
        </rewrite>

相关参考

JIRA官方给出的参考: https://confluence.atlassian.com/display/JIRAKB/Integrating+JIRA+with+IIS+using+ARR

原文地址:https://www.cnblogs.com/niusys/p/Integrating-JIRA-with-IIS-using-ARR.html