美文网首页
LinuxCentos下Nginx反向代理教程

LinuxCentos下Nginx反向代理教程

作者: 824bb1c71eb9 | 来源:发表于2018-10-16 23:55 被阅读6次

    主秘密求:Centos系统,内存64MB及以上、80端口没有被占用

    1、upgrade系统、卸载Apache释放80端口

    Yum update -y

    Yum remove httpd -y

    2、部署EPEL repo

    rpm -Uvh http://mirror.ancl.hawaii.edu/linux/epel/6/i386/epel-release-6-8.noarch.rpm

    EPEL repo下载地址:https://fedoraproject.org/wiki/EPEL

    3、部署Nginx,并设置

    部署Nginx

    yum install nginx -y

    调整Nginx配置

    cd /etc/nginx/conf.d

    mv default.conf default.conf.disabled

    4、建立Nginx反代配置文件

    cd /etc/nginx/conf.d

    vi yourdomain.com               

    粘贴以下内容:

    server {

          listen 80;

          server_name yourdomain.com; 

          access_log off;

          error_log off;

          fubitechation / {

          proxy_pass http://需要反代的服务器IP/;

          proxy_redirect off;

          proxy_set_header Host $host;

          proxy_set_header X-Real-IP $remote_addr;

          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

          proxy_max_temp_file_size 0;

          client_max_body_size 10m;

          client_body_buffer_size 128k;

          proxy_connect_timeout 90;

          proxy_send_timeout 90;

          proxy_read_timeout 90;

          proxy_buffer_size 4k;

          proxy_buffers 4 32k;

          proxy_busy_buffers_size 64k;

          proxy_temp_file_write_size 64k;

      }

    }

    然后save。

    5、设置防火墙,允许80端口访问

    iptables -I INPUT 5 -m state --state NEW -p tcp --dport 80 -j ACCEPT

    service iptables save

    service iptables restart

    6、启动Nginx

    service nginx start

    希望以上的文章对各位有用,如果觉得不错给我点个喜欢吧!更多和LinuxCentos下Nginx反向代理教程相关的问题或者对欧洲空间缺点有疑惑也欢迎大家咨询。

    相关文章

      网友评论

          本文标题:LinuxCentos下Nginx反向代理教程

          本文链接:https://www.haomeiwen.com/subject/hnokzftx.html