Skip to content

Commit 0269d2d

Browse files
Update faqs-app-service-linux-new.md
1 parent e9b30c5 commit 0269d2d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

support/azure/app-service/faqs-app-service-linux-new.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,17 @@ Yes, set the `WEBSITE_WEBDEPLOY_USE_SCM` setting to `false`.
6767
Options:
6868

6969
- Use Azure Continuous Delivery with Azure DevOps or GitHub.
70-
- Use ZIP deploy API:
70+
- Use `zipdeploy` API:
7171

7272
```bash
7373
curl -X POST -u <user> --data-binary @<zipfile> https://{your-sitename}.scm.azurewebsites.net/api/zipdeploy
7474
```
7575

7676
## Language support
7777

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?
7979

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:
8181

8282
```javascript
8383
const io = require('socket.io')(server,{
@@ -101,7 +101,7 @@ Yes. Use Azure CLI (not Azure portal). You can use [system-assigned](https://git
101101

102102
### I'm using my own custom container. I want the platform to mount an SMB share to the `/home/` directory. Is this doable?
103103

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**.
105105

106106
### My container fails to start with "no space left on device". What does this error mean?
107107

@@ -126,7 +126,7 @@ Provide the full registry URL including `https://`.
126126

127127
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).
128128

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?
130130

131131
This isn't supported.
132132

@@ -155,7 +155,7 @@ For example, in the `init.sh` script, use: `export ASPNETCORE_URLS={Your value}`
155155

156156
### How do I configure Azure Container Registry (ACR) to use with multi-container?
157157

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.
159159

160160
Create the following application settings:
161161

@@ -183,7 +183,7 @@ Here are the rules for determining which container is accessible (in the order o
183183

184184
### How do I use depends_on?
185185

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.
187187

188188
The following example code shows a Python app checking to see if a Redis container is running:
189189

0 commit comments

Comments
 (0)