-
Notifications
You must be signed in to change notification settings - Fork 28
Using a proxy server
netwolfuk edited this page Oct 9, 2014
·
12 revisions
The tcWebHooks plugin is instructed to use a proxy server for all its webhook requests by adding a new element to TeamCity's main-config.xml file. For more infomation about configuring TeamCity and to find the location of where the main-config.xml file is located, please see https://confluence.jetbrains.com/display/TCD8/TeamCity+Data+Directory
<?xml version="1.0" encoding="UTF-8"?>
<server>
<webhooks>
<proxy host="myproxy.mycompany.com" port="8080" username="proxy_username" password="proxy_password">
<noproxy url=".mycompany.com" />
<noproxy url="192.168.0." />
</proxy>
</webhooks>
</server>
- Home
- Installing
- Configuration
- Templates
- Parameters (aka Variables)
- Example Webhook output
- WebHooks REST API