Skip to content

Commit a517dba

Browse files
authored
Merge pull request #205693 from cephalin/patch-2
remove gunicorn.conf.py messaging
2 parents 96cbe59 + bd8a7e0 commit a517dba

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

articles/app-service/configure-language-python.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ When deployed to App Service, Python apps run within a Linux Docker container th
186186
This container has the following characteristics:
187187
188188
- Apps are run using the [Gunicorn WSGI HTTP Server](https://gunicorn.org/), using the additional arguments `--bind=0.0.0.0 --timeout 600`.
189-
- You can provide configuration settings for Gunicorn through a *gunicorn.conf.py* file in the project root, as described on [Gunicorn configuration overview](https://docs.gunicorn.org/en/stable/configure.html#configuration-file) (docs.gunicorn.org). You can alternately [customize the startup command](#customize-startup-command).
189+
- You can provide configuration settings for Gunicorn by [customizing the startup command](#customize-startup-command).
190190
191191
- To protect your web app from accidental or deliberate DDOS attacks, Gunicorn is run behind an Nginx reverse proxy as described on [Deploying Gunicorn](https://docs.gunicorn.org/en/latest/deploy.html) (docs.gunicorn.org).
192192
@@ -250,9 +250,7 @@ Again, if you expect to see a deployed app instead of the default app, see [Trou
250250

251251
## Customize startup command
252252

253-
As noted earlier in this article, you can provide configuration settings for Gunicorn through a *gunicorn.conf.py* file in the project root, as described on [Gunicorn configuration overview](https://docs.gunicorn.org/en/stable/configure.html#configuration-file).
254-
255-
If such configuration is not sufficient, you can control the container's startup behavior by providing either a custom startup command or multiple commands in a startup command file. A startup command file can use whatever name you choose, such as *startup.sh*, *startup.cmd*, *startup.txt*, and so on.
253+
You can control the container's startup behavior by providing either a custom startup command or multiple commands in a startup command file. A startup command file can use whatever name you choose, such as *startup.sh*, *startup.cmd*, *startup.txt*, and so on.
256254

257255
All commands must use relative paths to the project root folder.
258256

0 commit comments

Comments
 (0)