我想在我的网站上上传最多5 GB的视频。我已经在一台服务器上完成了配置,并且工作正常,而对于另一台服务器,我收到了“ 502 Bad gateway”消息
nginx配置
server{
listen 80;
server_name admin.matrixpartners.in 35.154.26.69;
client_max_body_size 5120M;
location = /favicon.ico {access_log off; log_not_found off;}
location /{
include proxy_params;
proxy_connect_timeout 3000s;
proxy_read_timeout 3000s;
proxy_pass http://unix:/home/ubuntu/matrix/matrix.sock;
}
}
而gunicorn.service是
[Unit]
Description=gunicorn daemon
After=network.target
[Service]
User=root
Group=www-data
WorkingDirectory=/home/ubuntu/matrix
ExecStart=/home/ubuntu/matrix/matrixenv/bin/gunicorn --access-logfile - --workers 3 --bind unix:/home/ubuntu/matrix/matrix.sock matrix.wsgi:application
[Install]
WantedBy=multi-user.target
我为其他服务器定义了相同的配置,并且可以正常工作。
请为此提出建议