nginx域名配置

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zchqq/article/details/82911511
server {
        listen 80;
        server_name hrms.jhongnet.com;
        root /data/web/app/hrms/www/public;
        index index.html index.htm index.php;
        location / {
                if (!-e $request_filename){
                        rewrite ^/index.php(.*)$ /index.php?s=$1 last;
                        rewrite ^(.*)$ /index.php?s=$1 last;
                         break;
                 }
        }
        location ~ .*\.(php|php5)?$
        {
             fastcgi_pass  127.0.0.1:9000;
             fastcgi_index index.php;
             fastcgi_split_path_info ^(.+\.php)(.*)$;
             fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
             include  fastcgi_params;
        }

}



server {
        listen       80;
        server_name  zengchenhua.yiimine.com;
        root   /home/zengchenhua/web/yii2_mine/web;
        
        access_log /home/zengchenhua/log/nginx/access.log;
        error_log  /home/zengchenhua/log/nginx/error.log;
        
        location / {
            index index.php;
            try_files $uri $uri/ /index.php$is_args$args;
        }
        location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            #fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index  index.php;
            include fastcgi_params;
            fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
        }
    }



server {
        listen       80;
        server_name  www.perchen.com;
        root   /data/per/public;


       if (!-e $request_filename) {
          rewrite  ^(.*)$  /index.php/$1  last;
          break;
       }
       location / {
            index  index.html index.htm index.php;
            #autoindex  on;
       }
       location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
       }

}


猜你喜欢

转载自blog.csdn.net/zchqq/article/details/82911511