Skip to content

Commit

Permalink
Merge pull request #29 from fixpoint/feature/issue22-nginx-uwsgi-timeout
Browse files Browse the repository at this point in the history
Feature/issue22 nginx uwsgi timeout
  • Loading branch information
tichi73 authored Jul 25, 2024
2 parents 588056f + 6392640 commit 0153546
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
2024-07-25 Ichiro TAKAHASHI <[email protected]>

* nginx -> uwsgi の send/recv タイムアウトを 300 秒に設定しました。(#22)

* 監査ログ(audit.log)の記録レベル値を環境変数 AUDIT_LOGGING_LEVEL で指定できるようにしました。(#28)

* rabbitmq コンテナを 3.13-alpine にアップデートしました。 (#26)
Expand Down
7 changes: 3 additions & 4 deletions configs/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@ upstream django {
server kompira:8000;
}

# タイムアウトの設定
proxy_connect_timeout 30;
proxy_send_timeout 300;
proxy_read_timeout 300;
# uwsgi タイムアウトの設定
uwsgi_send_timeout 300;
uwsgi_read_timeout 300;

server {
# HTTPの80番ポートを指定
Expand Down

0 comments on commit 0153546

Please sign in to comment.