0
錯誤502網關錯誤當我嘗試在模板大圖(更多然後2000x2000px)與SORL-縮略圖顯現。SORL-縮略圖錯誤502大的圖像
沒有錯,如果不帶縮略圖只是圖片,如果小於20000x2000px
負載頁面已經試圖改變nginx的配置這樣的...:
server {
proxy_connect_timeout 1500;
proxy_send_timeout 1500;
proxy_read_timeout 1500;
send_timeout 1500;
location/{
fastcgi_read_timeout 1500;
}
}
使用模板常規代碼一樣
{% thumbnail ph.image "500x500" crop="center" format="PNG" as im %}
<img src="{{ im.url }}"/>
{% endthumbnail %}
任何建議請問?
只爲谷歌搜索 Django的Python的SORL-縮略圖縮略圖502網關錯誤大的圖像
我f你正在使用gunicorn嘗試添加到conf文件 'timeout = 600 keepalive = 600' http://docs.gunicorn.org/en/latest/settings.html#timeout 更新主管也:'supervisorctl update ' – alfredo138923
@ alfredo138923 我加了--timeout 600 --keep-alive 600,沒有任何反應。 是supervisorctl nessesary? –