Fix nginx error
This commit is contained in:
70
nginx.conf
70
nginx.conf
@ -34,11 +34,14 @@ http {
|
||||
alias /app/static/;
|
||||
}
|
||||
|
||||
# スーパーバイザー Web アプリケーション
|
||||
location / {
|
||||
# スーパーバイザー Web アプリケーション(特定パス)
|
||||
location = / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
|
||||
location = /index.html {
|
||||
root /usr/share/nginx/html;
|
||||
}
|
||||
|
||||
# スーパーバイザー専用の静的ファイル
|
||||
@ -46,6 +49,44 @@ http {
|
||||
root /usr/share/nginx/html;
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
# Django ログアウト・ログイン系の処理
|
||||
location /accounts/ {
|
||||
proxy_pass http://app:8000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
proxy_connect_timeout 60s;
|
||||
proxy_send_timeout 60s;
|
||||
proxy_read_timeout 300s;
|
||||
client_max_body_size 50M;
|
||||
}
|
||||
|
||||
# ろげイニングアプリ専用API(重要!)
|
||||
location /gifuroge/ {
|
||||
proxy_pass http://app:8000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
# タイムアウト設定(502エラー対策)
|
||||
proxy_connect_timeout 60s;
|
||||
proxy_send_timeout 60s;
|
||||
proxy_read_timeout 300s;
|
||||
|
||||
# バッファ設定(大きなレスポンス対策)
|
||||
proxy_buffering on;
|
||||
proxy_buffer_size 8k;
|
||||
proxy_buffers 8 8k;
|
||||
proxy_busy_buffers_size 16k;
|
||||
proxy_temp_file_write_size 16k;
|
||||
|
||||
# クライアント設定(画像アップロード対応)
|
||||
client_max_body_size 100M;
|
||||
}
|
||||
|
||||
# Django API プロキシ
|
||||
location /api/ {
|
||||
@ -93,6 +134,29 @@ http {
|
||||
# クライアント設定
|
||||
client_max_body_size 50M;
|
||||
}
|
||||
|
||||
# Django メインアプリケーション(rog/以下)
|
||||
location /rog/ {
|
||||
proxy_pass http://app:8000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
|
||||
proxy_connect_timeout 60s;
|
||||
proxy_send_timeout 60s;
|
||||
proxy_read_timeout 300s;
|
||||
client_max_body_size 100M;
|
||||
}
|
||||
|
||||
# Django その他のパス(デフォルト)
|
||||
location ~ ^/(media|favicon\.ico|robots\.txt) {
|
||||
proxy_pass http://app:8000;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
error_page 500 502 503 504 /50x.html;
|
||||
location = /50x.html {
|
||||
|
||||
Reference in New Issue
Block a user