| 69 | == Example == |
| 70 | The default web tier configuration file, webconfig.ini contains the following settings (comments have been removed for conciseness): |
| 71 | |
| 72 | {{{ |
| 73 | [AdministrativeConnectionProperties] |
| 74 | Port = 2810 |
| 75 | |
| 76 | [ClientConnectionProperties] |
| 77 | Port = 2811 |
| 78 | |
| 79 | [SiteConnectionProperties] |
| 80 | IpAddress = 127.0.0.1 |
| 81 | Port = 2812 |
| 82 | }}} |
| 83 | |
| 84 | To set up the web tier to access two site servers, with ip addresses 111.111.111.111 and 111.111.111.222 using the standard ports, only the !IpAddress setting needs to be modified: |
| 85 | |
| 86 | {{{ |
| 87 | [AdministrativeConnectionProperties] |
| 88 | Port = 2810 |
| 89 | |
| 90 | [ClientConnectionProperties] |
| 91 | Port = 2811 |
| 92 | |
| 93 | [SiteConnectionProperties] |
| 94 | IpAddress = 111.111.111.111,111.111.111.222 |
| 95 | Port = 2812 |
| 96 | }}} |
| 97 | |
| 98 | It is also possible to use different port settings for each server. So if server 111.111.111.111 uses the standard ports, and 111.111.111.222 uses 2820, 2821 and 2822, the settings should look like this: |
| 99 | |
| 100 | {{{ |
| 101 | [AdministrativeConnectionProperties] |
| 102 | Port = 2810,2820 |
| 103 | |
| 104 | [ClientConnectionProperties] |
| 105 | Port = 2811,2821 |
| 106 | |
| 107 | [SiteConnectionProperties] |
| 108 | IpAddress = 111.111.111.111,111.111.111.222 |
| 109 | Port = 2812,2822 |
| 110 | }}} |
| 111 | |