Skip to content

Commit

Permalink
Merge pull request #2958 from hughrun/production
Browse files Browse the repository at this point in the history
temporarily fix signed get requests failing
  • Loading branch information
mouse-reeve authored Sep 23, 2023
2 parents f0af798 + f7c304f commit 8a12870
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/systemd/bookwyrm.service
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a12870

Please sign in to comment.