vote up 1 vote down star
1

How do I setup TeamCity 4.0 so that I can access it over port 443 on the internet? e.g. https://teamcity.mydomain.com

I am running IIS 7 on the same server that TeamCity is installed. I see two options:

  1. Setup TeamCity to use port 8443 and create a reverse proxy in IIS that routes requests to the TeamCity public IP address to the Tomcat port on the internal IP address.

  2. Setup Tomcat to run on a different IP address than IIS 7, and configure TeamCity to run on port 443.

I'm not sure on the details of either of these steps.

flag

41% accept rate
The accepted answer is for Apache. Did you use the instructions on the referenced page for IIS? – Mark Jul 29 at 20:30
Mark, IIS 7 ARR should work just fine. I just haven't tried it. We already had an Apache reverse proxy so that's what we used. – Lance Fisher Jul 31 at 19:01

4 Answers

vote up 2 vote down check

Lance,

I just got TeamCity setup to run through our Apache Proxy server with only minimum changes to the Tomcat configuration. I wrote up the details here: http://www.andrewhanson.net/blog/archive/2009/01/03/reverse-proxy-for-team-city-4.0.aspx

link|flag
Nice! Funny that you ran across my question. – Lance Fisher Jan 4 at 2:44
The link doesn't appear to be working at the moment. Is that temporary? – Mark Jul 29 at 20:26
Thanks for the updated link – Mark Jul 30 at 7:35
vote up 1 vote down

It requires configuring the bundled Tomcat server for https. See here:

http://www.jetbrains.net/confluence/display/TCD4/Using+HTTPS+to+access+TeamCity+server

and here:

http://tomcat.apache.org/tomcat-6.0-doc/ssl-howto.html

I also setup Tomcat to listen on just one IP Address. All of this turned out to be a real pain, and I still am not able to run TeamCity as a service. I can only run it at the command line. If I were going to do this over, I would install TeamCity to run on the default port, and reverse proxy to it using IIS7 Application Request Routing or Apache Virtual Directories.

link|flag
vote up 0 vote down

If you are not expecting high server load you can avoid using IIS or Apache and enable SSL right in the Tomcat. This is simpler to configure. The only drawback is high CPU usage when client connects to the server (during negotiation stage), after that CPU usage is negligible.

link|flag
vote up 0 vote down

Make sure you also use load these 2 modules

LoadModule proxy_module bin/mod_proxy.so 
LoadModule proxy_http_module bin/mod_proxy_http.so

ProxyPass /TeamCity http://localhost/TeamCity
ProxyPassReverse /TeamCity http://localhost/TeamCity
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.