Merge pull request #2958 from hughrun/production

temporarily fix signed get requests failing
This commit is contained in:
Mouse Reeve 2023-09-22 17:01:24 -07:00 committed by GitHub
commit 8a12870994
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ After=network.target postgresql.service redis.service
User=bookwyrm
Group=bookwyrm
WorkingDirectory=/opt/bookwyrm/
ExecStart=/opt/bookwyrm/venv/bin/gunicorn bookwyrm.wsgi:application --bind 0.0.0.0:8000
ExecStart=/opt/bookwyrm/venv/bin/gunicorn bookwyrm.wsgi:application --threads=8 --bind 0.0.0.0:8000
StandardOutput=journal
StandardError=inherit

View file

@ -47,7 +47,7 @@ services:
web:
build: .
env_file: .env
command: gunicorn bookwyrm.wsgi:application --bind 0.0.0.0:8000
command: gunicorn bookwyrm.wsgi:application --threads=8 --bind 0.0.0.0:8000
logging: *default-logging
volumes:
- .:/app