103 lines
2.9 KiB
Nginx Configuration File
103 lines
2.9 KiB
Nginx Configuration File
user nginx;
|
||
worker_processes 1;
|
||
|
||
error_log /var/log/nginx/error.log warn;
|
||
pid /var/run/nginx.pid;
|
||
|
||
events {
|
||
worker_connections 1024;
|
||
}
|
||
|
||
http {
|
||
include /etc/nginx/mime.types;
|
||
default_type application/octet-stream;
|
||
|
||
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
|
||
'$status $body_bytes_sent "$http_referer" '
|
||
'"$http_user_agent" "$http_x_forwarded_for"';
|
||
|
||
access_log /var/log/nginx/access.log main;
|
||
|
||
sendfile on;
|
||
#tcp_nopush on;
|
||
|
||
keepalive_timeout 65;
|
||
|
||
#gzip on;
|
||
|
||
server {
|
||
listen 80;
|
||
server_name localhost;
|
||
|
||
# 静的ファイルの提供
|
||
location /static/ {
|
||
alias /app/static/;
|
||
}
|
||
|
||
# スーパーバイザー Web アプリケーション
|
||
location / {
|
||
root /usr/share/nginx/html;
|
||
index index.html;
|
||
try_files $uri $uri/ /index.html;
|
||
}
|
||
|
||
# スーパーバイザー専用の静的ファイル
|
||
location /supervisor/ {
|
||
root /usr/share/nginx/html;
|
||
try_files $uri $uri/ =404;
|
||
}
|
||
|
||
# Django API プロキシ
|
||
location /api/ {
|
||
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 50M;
|
||
}
|
||
|
||
# Django Admin プロキシ
|
||
location /admin/ {
|
||
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;
|
||
|
||
# バッファ設定
|
||
proxy_buffering on;
|
||
proxy_buffer_size 8k;
|
||
proxy_buffers 8 8k;
|
||
proxy_busy_buffers_size 16k;
|
||
|
||
# クライアント設定
|
||
client_max_body_size 50M;
|
||
}
|
||
|
||
error_page 500 502 503 504 /50x.html;
|
||
location = /50x.html {
|
||
root /usr/share/nginx/html;
|
||
}
|
||
}
|
||
}
|