zoukankan      html  css  js  c++  java
  • nginx 只容许域名访问禁止掉 ip 访问

    在原有 nginx server 的基础上再加上相同端口的配置

        server {
                listen 80 default_server;
                server_name _;
                return 403;
        }

    配置之后如下

        server {
            listen 80;
            server_name www.baidu.com;
            #ssl on;

            root /www;
            
                client_max_body_size 20m;        

            location ~ .php {  
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index /index.php;
                fastcgi_split_path_info  ^(.+.php)(/.+)$;
                fastcgi_param PATH_INFO  $fastcgi_path_info;
                fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
            }


               if (!-e $request_filename) {
                   rewrite ^/index.php(.*)$ /index.php?s=$1 last;
                   rewrite ^(.*)$ /index.php?s=$1 last;
                   break;
               }

            location / {
                index index.php index.htm;
            }
        }
        
        server {
                listen 80 default_server;
                server_name _;
                return 403;
        }

  • 相关阅读:
    网络爬虫基础练习
    综合练习-词频统计
    组合数据类型
    【Hadoop】Hadoop综合大作业
    理解MapReduce操作
    Hadoop-熟悉常用的HDFS操作
    python-爬取中药信息
    Pytthon-数据结构化与保存
    python-爬取校园新闻首页的新闻
    python-爬虫基础
  • 原文地址:https://www.cnblogs.com/handongyu/p/9661069.html
Copyright © 2011-2022 走看看