Skip to content

Commit 959a489

Browse files
committed
Fixing parameter paths.
1 parent c908eb9 commit 959a489

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/userguide/CDN/USERGUIDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,12 @@ This operation takes one parameter, an associative array, with the following key
110110
| `origins` | List of origin servers for your service. | Array of associative arrays | Yes | - | `array( ... )` |
111111
| `origins[n]` | Information about an origin server for your service. | Associative array | Yes | - | `array( ... )` |
112112
| `origins[n]['origin']` | The origin server address, from where the CDN will pull your web site's assets. | String | Yes | - | `origin.acme.com` |
113-
| `origins[n]['origin']['port']` | The origin server's port. | Integer | No | 80 | `8080` |
114-
| `origins[n]['origin']['ssl']` | Whether origin server uses SSL. | Boolean | No | `false` | `true` |
115-
| `origins[n]['origin']['rules']` | List of rules defining the conditions when this origin should be accessed. | Array of associative arrays | No | `null` | `array( ... )` |
116-
| `origins[n]['origin']['rules'][n]` | Information about an access rule. | Associative array | No | `null` | `array( ... )` |
117-
| `origins[n]['origin']['rules'][n]['name']` | A human-readable name of the rule. | String | No | `null` | `images` |
118-
| `origins[n]['origin']['rules'][n]['request_url']` | The request URL this rule should match (regex supported). | String | No | `null` | `^/images/.+$` |
113+
| `origins[n]['port']` | The origin server's port. | Integer | No | 80 | `8080` |
114+
| `origins[n]['ssl']` | Whether origin server uses SSL. | Boolean | No | `false` | `true` |
115+
| `origins[n]['rules']` | List of rules defining the conditions when this origin should be accessed. | Array of associative arrays | No | `null` | `array( ... )` |
116+
| `origins[n]['rules'][n]` | Information about an access rule. | Associative array | No | `null` | `array( ... )` |
117+
| `origins[n]['rules'][n]['name']` | A human-readable name of the rule. | String | No | `null` | `images` |
118+
| `origins[n]['rules'][n]['requestUrl']` | The request URL this rule should match (regex supported). | String | No | `null` | `^/images/.+$` |
119119
| `caching` | List of TTL rules for assets of this service. | Array of associative arrays | No | `null` | `array( ... )` |
120120
| `caching[n]` | Information about a TTL rule. | Associative array | No | `null` | `array( ... )` |
121121
| `caching[n]['name']` | A human-readable name of the TTL rule. | String | No | `null` | `long_ttl` |

0 commit comments

Comments
 (0)