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;
        }

  • 相关阅读:
    C#创建ActiveX
    easy-ui 中的事件触发 (tree)
    程序目录
    微信公众平台开发
    Redis分片机制
    Redis主从切换
    Redis主从复制
    Redis持久化机制
    Redis缓存击穿、缓存穿透、缓存雪崩
    Redis与数据库数据一致性
  • 原文地址:https://www.cnblogs.com/handongyu/p/9661069.html
Copyright © 2011-2022 走看看