搞了3天啊,查了各种资料啊。
然后使劲的看log啊,总算搞定了啊。
一般情况,本地开发环境测试没问题,部署到服务器就各种不适应,就是服务器配置的问题了。
本次这种验证码不显示,典型的nginx的配置问题。
正确的nginx配置如下:
events {
worker_connections 1024;
}
ht服务器托管网tp {
include 服务器托管网 mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name 你的域名;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
index index.html index.htm;
}
location ^~/prod-api/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://ip:8080/;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net