nginx转发请求到指定端口(Windows)

下载压缩包解压即可
nginx转发请求到指定端口(Windows)_第1张图片
在conf/nginx.conf 中添加下面内容
include vhost/*.conf;
nginx转发请求到指定端口(Windows)_第2张图片
然后在conf目录下新建vhost目录,新建xxx.conf文件

server { 
	listen 80; 
	autoindex on; 
	server_name tomcat.imooc.com; 
	access_log c:/access.log combined; 
	index index.html index.htm index.jsp index.php; 
	#error_page 404 /404.html; 
	if ( $query_string ~* ".*[\;'\<\>].*" ){ 
		return 404; 
	} 
	location / { 
	proxy_pass http://192.168.8.123:8080; 
	add_header Access-Control-Allow-Origin *; 
	} 
}

主要注意两点
server_name tomcat.imooc.com; 这里我们模拟域名访问tomcat的8080端口,随意指定
proxy_pass http://192.168.8.123:8080; 这里填写自己的ip和端口即可
然后打开本地hosts文件,添加映射

192.168.8.123 tomcat.imooc.com

启动本地tomcat,浏览器访问
nginx转发请求到指定端口(Windows)_第3张图片
启动nginx,cmd窗口,找到nginx安装目录,输入nginx.exe 回车
nginx转发请求到指定端口(Windows)_第4张图片
后台程序已经可以看到nginx运行了
nginx转发请求到指定端口(Windows)_第5张图片
游览器验证
nginx转发请求到指定端口(Windows)_第6张图片

你可能感兴趣的:(nginx转发请求到指定端口(Windows))