2013-10-15 193 views
0

我對亞馬遜EC2 Ubuntu的服務器設置在那裏我有詹金斯和聲納安裝Apache HTTP服務器和虛擬主機

我使用他們的網站上下載相關的包聲納apt-get和安裝詹金斯

當這些服務啓動時,我可以通過URL http://ec2-1-2-3-4:8080和聲納與URL http://ec2-1-2-3-4:9000

使用Apache HTTP服務器去詹金斯,是否有可能將其設置爲導航使用以下網址詹金斯和聲納?

http://ec2-1-2-3-4/jenkins 
http://ec2-1-2-3-4/sonar 

回答

1

是的,這是可能的,但你必須使用mod_proxy。我爲我的Jira安裝做了同樣的事情。這是Vhost。

ServerName jira.chidgey.me 
    ProxyPreserveHost On 

    <Proxy *> 
    Order allow,deny 
    Allow from all 
    </Proxy> 

    ProxyPass/http://jira.chidgey.me:8080/ 
    ProxyPassReverse/http://jira.chidgey.me:8080/ 

    # Index file and Document Root (where the public files are located) 
    DirectoryIndex index.html 
    DocumentRoot /var/www/vhosts/jira.chidgey.me/httpdocs