/
Jira의 에러페이지 리다이렉트(redirect)
Jira의 에러페이지 리다이렉트(redirect)
Jira에서 사용하는 tomcat 에러 페이지를 커스터마이징 할 수 있습니다.
1. Jira 서버의 아래 경로에서 web.xml 파일 편집
<JIRA-install>/atlassian-jira/WEB-INF/web.xml
2. Jira에 사전 정의된 오류 코드 페이지가 있기 때문에 사용자 정의 html 파일의 위치를 정의로 변경
(예 : error-code 404 태그를 변경하는 기존 내용)
<error-page>
<error-code>404</error-code>
<location>/secure/404.jspa</location>
</error-page>
이부분의 아래의 내용으로 변경
<error-page>
<error-code>404</error-code>
<location>/404.html</location>
</error-page>
3. web.xml 저장
4. <jira-install>/atlassian-jira/에 새로운 404.html 파일을 만들고 아래의 내용으로 커스터 마이징
5. Jira 재시작
, multiple selections available,
Related content
Jira Issue 매크로
Jira Issue 매크로
More like this
백업 및 복구
백업 및 복구
More like this
Apache HTTP Server (mod_proxy_http)를 사용하여 Atlassian 서버 응용 프로그램 프록시
Apache HTTP Server (mod_proxy_http)를 사용하여 Atlassian 서버 응용 프로그램 프록시
More like this
Jira 및 Jira Service Desk HTTPS(SSL) 설정
Jira 및 Jira Service Desk HTTPS(SSL) 설정
More like this
Linux에서 JIRA port 80으로 변경 방법
Linux에서 JIRA port 80으로 변경 방법
More like this
Jira의 이슈를 GitLab 이슈로 가져오기
Jira의 이슈를 GitLab 이슈로 가져오기
More like this