评论

收藏

[Nginx] 关于nginx 实现jira反向代理的问题

web服务器 web服务器 发布于:2021-11-15 16:32 | 阅读数:616 | 评论:0

这篇文章主要介绍了关于nginx 实现jira反向代理的问题,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
摘要:配置nginx反向代理jira并实现https 配置tomcat 在本文中,我们设置可以在地址http://jira.aniu.so/jira(标准http端口80)上访问jira,而jira本身可以使用上下文路径/ jira监听端口8080。
配置nginx反向代理jira
配置tomcat
修改配置文件server.xml(在jira安装目录下)
更改前:
<context docbase="${catalina.home}/atlassian-jira" path="" reloadable="false" usehttponly="true"> 更改后: <context docbase="${catalina.home}/atlassian-jira" path="/jira" reloadable="false" usehttponly="true">
配置连接器
添加proxyname和proxyport元素(用适当的属性替换它们),以及下面的另一个连接器——这用于故障排除,以绕过代理:
<!-- nginx proxy connector --> # 仅仅使用nginx不使用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"/>
DSC0000.png

上面注释是原有的,下面是自己修改的
配置nginx的虚拟主机:
DSC0001.jpg

DSC0002.jpg

在之后重启nginx 和jira就可以起了
系统面板就正常显示了:
DSC0003.jpg

到此这篇关于关于nginx 实现jira反向代理的问题的文章就介绍到这了,更多相关nginx 反向代理内容请搜索CodeAE代码之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持CodeAE代码之家!
原文链接:https://www.cnblogs.com/fuyuteng/p/15303700.html

关注下面的标签,发现更多相似文章