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: support/azure/app-service/faqs-app-service-linux-new.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,17 +67,17 @@ Yes, set the `WEBSITE_WEBDEPLOY_USE_SCM` setting to `false`.
67
67
Options:
68
68
69
69
- Use Azure Continuous Delivery with Azure DevOps or GitHub.
70
-
- Use ZIP deploy API:
70
+
- Use `zipdeploy` API:
71
71
72
72
```bash
73
73
curl -X POST -u <user> --data-binary @<zipfile> https://{your-sitename}.scm.azurewebsites.net/api/zipdeploy
74
74
```
75
75
76
76
## Language support
77
77
78
-
### I want to use web sockets in my Node.js application. Are there any special settings or configurations to set?
78
+
### I want to use web sockets in my 'Node.js' application. Are there any special settings or configurations to set?
79
79
80
-
Yes, disable `perMessageDeflate` in your server-side Node.js code. For example, if you're using socket.io, use the following code:
80
+
Yes, disable `perMessageDeflate` in your server-side `Node.js` code. For example, if you're using `socket.io`, use the following code:
81
81
82
82
```javascript
83
83
constio=require('socket.io')(server,{
@@ -101,7 +101,7 @@ Yes. Use Azure CLI (not Azure portal). You can use [system-assigned](https://git
101
101
102
102
### I'm using my own custom container. I want the platform to mount an SMB share to the `/home/` directory. Is this doable?
103
103
104
-
If `WEBSITES_ENABLE_APP_SERVICE_STORAGE` setting is **unspecified** or set to **false**, the `/home/` directory won't be shared across scale instances, and files written won't persist across restarts. Explicitly setting `WEBSITES_ENABLE_APP_SERVICE_STORAGE` to *true* enables the mount. Once this is set to true, if you want to disable the mount, you need to explicitly set `WEBSITES_ENABLE_APP_SERVICE_STORAGE` to **false**.
104
+
If `WEBSITES_ENABLE_APP_SERVICE_STORAGE` setting is **unspecified** or set to **false**, the `/home/` directory won't be shared across scale instances, and files written won't persist across restarts. Explicitly setting `WEBSITES_ENABLE_APP_SERVICE_STORAGE` to **true** enables the mount. Once this is set to true, if you want to disable the mount, you need to explicitly set `WEBSITES_ENABLE_APP_SERVICE_STORAGE` to **false**.
105
105
106
106
### My container fails to start with "no space left on device". What does this error mean?
107
107
@@ -126,7 +126,7 @@ Provide the full registry URL including `https://`.
126
126
127
127
Add the full image name, including the private registry URL (for example, `myacr.azurecr.io/dotnet:latest`). Image names that use a custom port [can't be entered through the portal](https://feedback.azure.com/d365community/). To set `docker-custom-image-name`, use the [`az` command-line tool](/cli/azure/webapp/config/container#az_webapp_config_container_set).
128
128
129
-
### an I expose more than one port on my custom container image?
129
+
### Can I expose more than one port on my custom container image?
130
130
131
131
This isn't supported.
132
132
@@ -155,7 +155,7 @@ For example, in the `init.sh` script, use: `export ASPNETCORE_URLS={Your value}`
155
155
156
156
### How do I configure Azure Container Registry (ACR) to use with multi-container?
157
157
158
-
In order to use ACR with multi-container, **all container images** need to be hosted on the same ACR registry server. Once they are on the same registry server, you'll need to create application settings and then update the Docker Compose configuration file to include the ACR image name.
158
+
In order to use ACR with multi-container, all container images need to be hosted on the same ACR registry server. Once they are on the same registry server, you'll need to create application settings and then update the Docker Compose configuration file to include the ACR image name.
159
159
160
160
Create the following application settings:
161
161
@@ -183,7 +183,7 @@ Here are the rules for determining which container is accessible (in the order o
183
183
184
184
### How do I use depends_on?
185
185
186
-
The `depends_on` option isn't supported on App Service and is ignored. Just as the [control startup and shutdown recommendation from Docker](https://docs.docker.com/compose/startup-order/), App Service multi-container apps should check dependencies through application code - both at startup and disconnection.
186
+
The `depends_on` option isn't supported on App Service and is ignored. Just as the [control startup and shutdown recommendation from Docker](https://docs.docker.com/compose/startup-order/), App Service multi-container apps should check dependencies through application code, both at startup and disconnection.
187
187
188
188
The following example code shows a Python app checking to see if a Redis container is running:
0 commit comments