[ADD] Remark on how to stop Gunicorn when testing

This commit is contained in:
Peter Pfeufer 2023-12-17 17:45:29 +01:00
parent 84e2107b62
commit 8aeb061635
No known key found for this signature in database
GPG Key ID: 6051D2C6AD4EBC27

View File

@ -474,6 +474,8 @@ Alliance Auth needs some additional services to run, which we will set up and co
To run the **Alliance Auth** website a [WSGI Server](https://www.fullstackpython.com/wsgi-servers.html) is required. For this [Gunicorn](http://gunicorn.org/) is highly recommended for its ease of configuring. It can be manually run from within your `myauth` base directory with `gunicorn --bind 0.0.0.0 myauth.wsgi` or automatically run using Supervisor. To run the **Alliance Auth** website a [WSGI Server](https://www.fullstackpython.com/wsgi-servers.html) is required. For this [Gunicorn](http://gunicorn.org/) is highly recommended for its ease of configuring. It can be manually run from within your `myauth` base directory with `gunicorn --bind 0.0.0.0 myauth.wsgi` or automatically run using Supervisor.
If you don't see any errors, this means that Gunicorn is running fine. You can stop it with `Ctrl+C` now.
The default configuration is good enough for most installations. Additional information is available in the [gunicorn](gunicorn.md) doc. The default configuration is good enough for most installations. Additional information is available in the [gunicorn](gunicorn.md) doc.
### Supervisor ### Supervisor