本來(lái)一切正常的,測(cè)試完,點(diǎn)了一次清理訂單數(shù)據(jù),現(xiàn)在各種問(wèn)題
PRO 3.1版本,現(xiàn)在的情況是,PC首頁(yè)訪問(wèn)會(huì)下載,反向代理修改重啟過(guò)無(wú)效,反向代理修改過(guò)重啟過(guò),守護(hù)進(jìn)程重啟過(guò)無(wú)效
后臺(tái)一直提示【服務(wù)器內(nèi)部錯(cuò)誤】
反向代理規(guī)則
#PROXY-START/
location ~* \.(php|jsp|cgi|asp|aspx)$
{
proxy_pass http://127.0.0.1:20199;
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 REMOTE-HOST $remote_addr;
}
location /
{
if (!-e $request_filename) {
proxy_pass http://127.0.0.1:20199;
}
proxy_http_version 1.1;
proxy_read_timeout 360s;
proxy_redirect off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
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 REMOTE-HOST $remote_addr;
add_header X-Cache $upstream_cache_status;
#Set Nginx Cache
add_header Cache-Control no-cache;
expires 12h;
}
#PROXY-END/