You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -100,6 +100,27 @@ For more information about this resource definition, see the [extension referenc
100
100
***fileUris**: The locations where the script files are stored. If you choose not to use the provided location, you need to update the values.
101
101
***commandToExecute**: This command invokes the script.
102
102
103
+
You must also open the HTTP port so that you would be able to access the web server.
104
+
105
+
1. Find **securityRules** in the template.
106
+
1. Add the following rule next to **default-allow-3389**.
107
+
108
+
```json
109
+
{
110
+
"name": "AllowHTTPInBound",
111
+
"properties": {
112
+
"priority": 1010,
113
+
"access": "Allow",
114
+
"direction": "Inbound",
115
+
"destinationPortRange": "80",
116
+
"protocol": "Tcp",
117
+
"sourcePortRange": "*",
118
+
"sourceAddressPrefix": "*",
119
+
"destinationAddressPrefix": "*"
120
+
}
121
+
}
122
+
```
123
+
103
124
## Deploy the template
104
125
105
126
For the deployment procedure, see the "Deploy the template" section of [Tutorial: Create ARM templates with dependent resources](./template-tutorial-create-templates-with-dependent-resources.md#deploy-the-template). We recommended that you use a generated password for the virtual machine administrator account. See this article's [Prerequisites](#prerequisites) section.
0 commit comments