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

  • 相关阅读:
    第07组 Alpha冲刺(1/6)
    第07组 团队Git现场编程实战
    第07组 团队项目-需求分析报告
    团队项目-选题报告
    第二次结对编程作业
    0012---求滑动距离
    0011---绝对值函数
    0010---温度转换
    0009---乘法问题
    0008---三位数倒序问题
  • 原文地址:https://www.cnblogs.com/handongyu/p/9661069.html
Copyright © 2011-2022 走看看