server {
listen 80;
autoindex on;
server_name www.ynbrkj.com;
access_log /usr/local/nginx/logs/access.log combined;
index index.html index.htm index.jsp index.php;
if ( $query_string ~* “.[;’<>].” ){
return 404;
}
location / {
proxy_pass http://127.0.0.1:8080/;
}
}
访问www.ynbrkj.com出现nginx的欢迎页面,不能转发到http://127.0.0.1:8080/,我用的是阿里云主机,nginx与tomcat是同一台机器