使用nginx反向代理实现直接访问域名而不用输入端口

首先是nginx安装

[root@iZbp1fuxe9jel2667kxu6eZ ~]# yum install nginx -y

进入目录

[root@iZbp1fuxe9jel2667kxu6eZ ~]# cd /etc/nginx

修改配置文件

[root@iZbp1fuxe9jel2667kxu6eZ nginx]# vim nginx.conf

使用nginx反向代理实现直接访问域名而不用输入端口_第1张图片
如果服务器上还有其他的项目,再写一个server即可

测试配置是否成功

[root@iZbp1fuxe9jel2667kxu6eZ nginx]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

启动nginx

[root@iZbp1fuxe9jel2667kxu6eZ nginx]# nginx

或者重启

[root@iZbp1fuxe9jel2667kxu6eZ nginx]# nginx -s reload

设置开机启动

[root@iZbp1fuxe9jel2667kxu6eZ nginx]# chkconfig nginx on

参考文章https://blog.csdn.net/whut2010hj/article/details/84677832

你可能感兴趣的:(nginx)