配置nginx代理tomcat 2017-5-20 17:48 | 1,966 | 0 | IT运维 83 字 | 1 分钟内 配置nginx代理tomcat,配置如下: upstream tomcat { server 127.0.0.1:8080; } server { listen 80; server_name test.geekapp.cn; location / { proxy_set_header Host $host; proxy_set_header X-… nginxtomcat