进入 /usr/local/nginx/conf
1
|
sudo cd /usr/local/nginx/conf |
创建 vhost 目录
1
|
sudo mkdir vhost |
修改 nginx.conf 文件
1
2
|
sudo cp nginx.conf nginx.conf_back sudo vim nginx.conf |
设置访问机器的 hosts 文件,以便模拟访问,我这里使用的机器是 windows 10,hosts 文件在 C:\Windows\System32\drivers\etc 文件夹下。
创建端口代理配置文件
1
2
|
sudo cd vhost sudo vim www.jaydenmall.com.conf |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
server { # 监听 80 端口 listen 80; autoindex on; server_name www.jaydenmall.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 / { # 反向代理到 8080 端口 proxy_pass http: //127 .0.0.1:8080; add_header Access-Control-Allow-Origin *; } } |
重启 nginx
1
|
sudo ../.. /sbin/nginx -s reload |
有可能会出现错误,这时需要使用nginx -c的参数指定nginx.conf文件的位置。
1
2
3
|
sudo killall -9 nginx # 杀掉 nginx 进程 sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx .conf sudo ../.. /sbin/nginx -s reload # 重启 |
端口反向代理成功,注意红色部分是默认的 80 端口,实际指向的确是 tomcat 的 8080 端口。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/kuaizisong/article/details/82789838