码迷,mamicode.com
首页 > 其他好文 > 详细

nginx 配置--限定用户访问,防止非80端口转80技巧

时间:2015-09-24 19:25:32      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:nginx rewrite

        server {

        listen       8890;

        server_name  you.sever.com.cn;

        location ~ ^/index.html {

             root /code/qhfaxweb_re/errorpages;            

    }

        location / {

         if ($http_x_forwarded_for !~* "***.250.***.27") {             

            return  404;

           }         

            proxy_pass  http://**.**.44.56:8890;

         proxy_set_header   Host             $host:8890;

         proxy_set_header   X-Real-IP        $remote_addr;

         proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;

        }

     }


本文出自 “运维路上” 博客,请务必保留此出处http://vekergu.blog.51cto.com/9966832/1697937

nginx 配置--限定用户访问,防止非80端口转80技巧

标签:nginx rewrite

原文地址:http://vekergu.blog.51cto.com/9966832/1697937

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!