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
Copy file name to clipboardExpand all lines: articles/app-service/containers/app-service-linux-faq.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ You can find all Docker files on [GitHub](https://github.com/azure-app-service).
30
30
| Java SE | the command to start your JAR app (for example, `java -jar /home/site/wwwroot/app.jar --server.port=80`) |
31
31
| Tomcat | the location of a script to perform any necessary configurations (for example, `/home/site/deployments/tools/startup_script.sh`) |
32
32
| Node.js | the PM2 configuration file or your script file |
33
-
| .Net Core | the compiled DLL name as `dotnet <myapp>.dll`|
33
+
| .NET Core | the compiled DLL name as `dotnet <myapp>.dll`|
34
34
| Ruby | the Ruby script that you want to initialize your app with |
35
35
36
36
These commands or scripts are executed after the built-in Docker container is started, but before your application code is started.
@@ -51,7 +51,7 @@ Yes, you can do that through the source control management (SCM) site.
51
51
52
52
**How can I create a Linux App Service plan through an SDK or an Azure Resource Manager template?**
53
53
54
-
You should set the **reserved** field of the app service to *true*.
54
+
Set the **reserved** field of the app service to *true*.
55
55
56
56
## Continuous integration and deployment
57
57
@@ -71,7 +71,7 @@ Yes, you need to set an app setting called `WEBSITE_WEBDEPLOY_USE_SCM` to *false
71
71
72
72
If Git deployment fails to your Linux web app, choose one of the following options to deploy your application code:
73
73
74
-
- Use the Continuous Delivery (Preview) feature: You can store your app’s source code in an Azure DevOps Git repo or GitHub repo to use Azure Continuous Delivery. For more information, see [How to configure Continuous Delivery for Linux web app](https://blogs.msdn.microsoft.com/devops/2017/05/10/use-azure-portal-to-setup-continuous-delivery-for-web-app-on-linux/).
74
+
- Use the Continuous Delivery (Preview) feature: You can store your app's source code in an Azure DevOps Git repo or GitHub repo to use Azure Continuous Delivery. For more information, see [How to configure Continuous Delivery for Linux web app](https://blogs.msdn.microsoft.com/devops/2017/05/10/use-azure-portal-to-setup-continuous-delivery-for-web-app-on-linux/).
75
75
76
76
- Use the [ZIP deploy API](https://github.com/projectkudu/kudu/wiki/Deploying-from-a-zip-file): To use this API, [SSH into your web app](https://docs.microsoft.com/azure/app-service/containers/app-service-linux-ssh-support) and go to the folder where you want to deploy your code. Run the following code:
77
77
@@ -168,11 +168,19 @@ Here are the rules for determining which container is accessible - in the order
168
168
- The first container to define port 80 or 8080
169
169
- If neither of the above is true, the first container defined in the file will be accessible (exposed)
170
170
171
+
172
+
## Web Sockets
173
+
174
+
Web Sockets are supported on Linux apps.
175
+
176
+
> [!IMPORTANT]
177
+
> Web Sockets are not currently supported for Linux apps on Free App Service Plans. We are working on removing this limitation and plan to support up to 5 web socket connections on Free App Service plans.
178
+
171
179
## Pricing and SLA
172
180
173
181
**What is the pricing, now that the service is generally available?**
174
182
175
-
You are charged the normal Azure App Service pricing for the number of hours that your app runs.
183
+
Pricing varies by SKU and region but you can see more details at our pricing page: [App Service Pricing](https://azure.microsoft.com/pricing/details/app-service/linux/).
0 commit comments