2011-01-09 2 views
1

내 실제의 nginx 구성은 다음과 같이이다 :nginx로 statical Jira 파일을 어떻게 제공합니까?

server { 
listen 443; 
server_name jira.domain.com; 
ssl_certificate /etc/ssl/certs/jira.crt; 
ssl_certificate_key /etc/ssl/private/jira.key; 
ssl on; 

location/{ 
    proxy_pass http://127.0.0.1:8080/; 
    proxy_set_header X-Forwarded-Proto https; 
    proxy_set_header Host $http_host; 
} 

} 

어떻게 락스 독립형 에디션 statical 파일을 제공합니까?

답변

2

nginx는 Jira 독립형 에디션을 사용하는 프록시 서버로 사용해야합니다. 비슷한 질문이 here입니다. 또는 컨테이너 (jboss 또는 tomcat)에 Jira jar 에디션을 배포하고 nginx와 컨테이너를 결합 할 수 있습니다.

+1

그래,하지만 나는 속도를 높이고 싶다. 그래서 나는 바람둥이를 피하는 nginx로 할 수있는 모든 것을 제공하고 싶다. –

관련 문제