Skip to content
Snippets Groups Projects

#155: fixed data disclosure tests for environments where no mongodb is...

Merged #155: fixed data disclosure tests for environments where no mongodb is...
Merged Benjamin Ledel requested to merge main into 1.1.0
30 files
+ 1868
598
Compare changes
  • Side-by-side
  • Inline
Files
30
+ 15
0
@@ -372,3 +372,18 @@ Content `traefik.toml`
statusCodes = ["200", "300-302"]
```
## Adjust deployment
### Number of gunicorn workers
The number of Gunicorn workers can be adjusted using the WORKERS environment variable.
By default, the application starts with 4 workers. You can override this value during deployment:
```docker-compose.yml
services:
web:
image: registry.git.rwth-aachen.de/polaris/rights-engine/rights-engine:${POLARIS_VERSION}
ports:
- "80:80"
environment:
- WORKERS=10
```
\ No newline at end of file
Loading