Can't proxying multiple sites in same domain

Xingyun Wu December 31, 2017

Hi,

I'm using Jira and confluence, and try to configure a reverse proxying(IIS). First I configure my Jira service by this Guide, and it worked. Then I try to configure my confluence service using the same guide, and changed server.xml/web.xml, but it's not working.

My Jira site is http://office.demo.com/jira, and confluence should be http://office.demo.com/confluence. I can visit my confluence site by http://localhost:8090/confluence, and can't visit from http://localhost/confluence. It gives me a 404 error.

I think this problem is relevant with my IIS URL rewite configuration. Currently it looks like this:

捕获.PNG

Both of these sites' maching parrtern is "(.*)". Should I change the matching parrtern? Or how to modify it?

Thanks!

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 1, 2018

Localhost is fine for testing a service is running, but it always means "this machine". 

Your tests on localhost are looking fine though - you've got Confluence on port 8090, context /confluence and you can see it there from localhost, but not on a different port.

Your next test should be to use the IIS interface - from another machine, try <ip address of server>:8090/confluence

Scobbing Ad January 1, 2018

Thanks Nic, I can visit demo:8090/confluence, but can’t visit demo/confluence.

 I think it’s cause by conflicting of URL rewrite since my Jira and confluence is running on the same server. Specifically, I think it’s relevant with my URL rewriting matching parrtern. Currently both Jira and confluence is (.*), and probably IIS can’t detect which request is for Jira and which is for confluence.

Basicly I want my IIS configure as demo.com/Jira rewrite to demo.com:8080/Jira(this already worked), and demo.com/confluence rewrite to demo.com:8090/confluence(which currently not worked).

Thanks again.

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 2, 2018

Yes, it must be the IIS settings. I can't pretend I know why it has to be so complex in IIS (It's two lines of config in Apache and one in Nginx), but yes, you will need to adjust the rewrites so they include the ports.

Suggest an answer

Log in or Sign up to answer