nginx反向代理详细教程(Centos、Ubuntu适用)亲测有效

    • 安装nginx

Centos系统:

yum install nginx -y
nginx

Ubuntu系统:

apt install nginx -y
nginx

现在打开浏览器,输入服务器ip,可以看到nginx的默认页面

2、编辑配置文件

使用vim编辑器编辑/etc/nginx/nginx.conf

vim /etc/nginx/nginx.conf

nano编辑器

nano /etc/nginx/nginx.conf

把nginx.conf中 server 改为以下模样,将3000更改为你要反代的端口

    server {
        listen 80;
        server_name _;
        index  index.php index.html index.htm;

        location / {
            proxy_pass http://127.0.0.1:3000/; # 将3000更改为你要反代的端口
            proxy_set_header Host $proxy_host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
    }

保存,回到终端输入命令:

nginx -s reload

刷新浏览器,已经反代成功了

你可能感兴趣的:(前端,nginx,前端,linux,centos)