diff --git a/IIS-Administration/api/sites.md b/IIS-Administration/api/sites.md index 3eae82a..2a967ba 100644 --- a/IIS-Administration/api/sites.md +++ b/IIS-Administration/api/sites.md @@ -135,9 +135,9 @@ Creating a web site that listens on port 8081. **POST** _/api/webserver/websites "physical_path": "C:\\inetpub\\wwwroot\\DemonstrationSite", "bindings": [ { - "protocol": "HTTP", + "protocol": "http", "port": "8081", - "ip_address": * + "ip_address": "*" } ] } @@ -154,9 +154,9 @@ Creating a web site that listens for HTTPS requests on port 8082. **POST** _/ap "physical_path": "C:\\inetpub\\wwwroot\\DemonstrationSite", "bindings": [ { - "protocol": "HTTPS", + "protocol": "https", "port": "8082", - "ip_address": *, + "ip_address": "*", "certificate": { "id": {certificate_id} } @@ -176,9 +176,9 @@ Creating a web site for a specific application pool. **POST** _/api/webserver/we "physical_path": "C:\\inetpub\\wwwroot\\DemonstrationSite", "bindings": [ { - "protocol": "HTTP", + "protocol": "http", "port": "8081", - "ip_address": * + "ip_address": "*" } ], "application_pool": { @@ -200,14 +200,14 @@ Adding a binding to a web site. **PATCH** _/api/webserver/websites/{id}_ { "bindings": [ { - "protocol": "HTTP", + "protocol": "http", "port": "80", - "ip_address": * + "ip_address": "*" }, { - "protocol": "HTTP", + "protocol": "http", "port": "8080", - "ip_address": * + "ip_address": "*" } ] }