產(chǎn)品型號:Thinkpad E15
系統(tǒng)版本:centos8
nginx反向代理配置
安裝nginx服務
[root@xuegod63 ~]# yum install -y epel-release #安裝yum擴展源,擴展源中有nginx安裝包
[root@xuegod63 ~]# yum install -y nginx
我們可以通過 proxy_pass 來配置反向代理
[root@xuegod63 ~]# vim /etc/nginx/nginx.conf
改:
47 location / {
48 }
為:
47 location / {
48 proxy_pass http://www.163.com;
49 }
[root@xuegod63 ~]# systemctl start nginx
查看IP地址
[root@xuegod63 ~]# ifconfig ens33
ens33: flags=4163
inet 192.168.1.63 netmask 255.255.255.0 broadcast 192.168.1.255
訪問web服務:http://192.168.1.63/
當我們訪問192.168.1.63,就直接跳轉到163網(wǎng)站了,說明我們配置的反向代理生效了。
總結:
1、安裝nginx服務
[root@xuegod63 ~]# yum install -y epel-release #安裝nginx yum源
[root@xuegod63 ~]# yum install -y nginx
2、我們可以通過 proxy_pass 來配置反向代理
[root@xuegod63 ~]# vim /etc/nginx/nginx.conf
改:
47 location / {
48 }
為:
47 location / {
48 proxy_pass http://www.163.com;
49 }
聲明:本網(wǎng)頁內容旨在傳播知識,若有侵權等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com