/
Linux에서 JIRA port 80으로 변경 방법

Linux에서 JIRA port 80으로 변경 방법

공식적인 변경 가이드는 여기 지만, 실상 해당 가이드 대로 설정하면 정상적으로 JIRA가 뜨지 않는다.

다음 가이드는 80포트를 8080포트로 리디랙션하는 방법으로 아틀라시안 측에서는 공식적으로 지원하지 않는다고 확인 하였다.

 

iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT iptables -A INPUT -i eth0 -p tcp --dport 8080 -j ACCEPT iptables -A PREROUTING -t nat -i eth0 -p tcp --dport 80 -j REDIRECT --to-port 8080

 

https://confluence.atlassian.com/jirakb/how-do-i-use-port-80-or-443-on-my-jira-server-as-a-non-root-user-on-linux-890079490.html

Related content

Jira 및 Jira Service Desk HTTPS(SSL) 설정
Jira 및 Jira Service Desk HTTPS(SSL) 설정
More like this
JIRA Data Center 설치
JIRA Data Center 설치
More like this
Jira의 에러페이지 리다이렉트(redirect)
Jira의 에러페이지 리다이렉트(redirect)
More like this
Apache HTTP Server (mod_proxy_http)를 사용하여 Atlassian 서버 응용 프로그램 프록시
Apache HTTP Server (mod_proxy_http)를 사용하여 Atlassian 서버 응용 프로그램 프록시
More like this
Jira Setup wizard
Jira Setup wizard
More like this
Jira MySQL 데이터베이스 생성과 구성
Jira MySQL 데이터베이스 생성과 구성
More like this