云主机 php + yiii2 + apache服务器转nginx配置文件:

server
{
   listen 80;
   listen 443 ssl http2;
   server_name qinimai.com www.qinimai.com;
   index index.php index.html index.htm default.php default.htm default.html;
   root /www/wwwroot/qinimai.com/;
   
   #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则
   #error_page 404/404.html;
   ssl_certificate    /www/server/panel/vhost/cert/qinimai.com/fullchain.pem;
   ssl_certificate_key    /www/server/panel/vhost/cert/qinimai.com/privkey.pem;
   ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
   ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
   ssl_prefer_server_ciphers on;
   ssl_session_cache shared:SSL:10m;
   ssl_session_timeout 10m;
   error_page 497  https://$host$request_uri;

   #SSL-END
 #引用重定向规则,注释后配置的重定向代理将无效
 include /www/server/panel/vhost/nginx/redirect/qinimai.com/*.conf;
   
   #ERROR-PAGE-START  错误页配置,可以注释、删除或修改
   #error_page 404 /404.html;
   #error_page 502 /502.html;
   #ERROR-PAGE-END
   
   #PHP-INFO-START  PHP引用配置,可以注释或修改
   include enable-php-56.conf;
   #PHP-INFO-END
   
   #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效
   include /www/server/panel/vhost/rewrite/qinimai.com.conf;
  if ($host != www.qinimai.com) {
  rewrite ^/(.*)$ $scheme://www.qinimai.com/$1 permanent;
  }
   #include /www/wwwroot/qinimai.com/.htaccess;
   #include /www/wwwroot/qinimai.com/backend/web/.htaccess;
   #include /www/wwwroot/qinimai.com/frontend/web/.htaccess;
   #REWRITE-END
   
   location / {
       root /www/wwwroot/qinimai.com/frontend/web;
       # nginx ignore index.php
       try_files  $uri /frontend/web/index.php?$args;

       location ~ \.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar)$ {
           access_log  off;
           expires  360d;
           try_files  $uri =404;
       }
   }
   location /admin {
       alias  /www/wwwroot/qinimai.com/backend/web;
       rewrite  ^(/admin)/$ $1 permanent;
       try_files  $uri /backend/web/index.php?$args;
   }
   
   #location /backend/web {
       #root /www/wwwroot/qinimai.com/backend/web;
       # Redirect everything that isn't a real file to index.php
       #try_files  $uri /backend/web/index.php?$args;
   #}
   
   # avoiding processing of calls to non-existing static files by Yii
   location ~ ^/admin/(.+\.(js|css|png|jpg|gif|swf|ico|pdf|mov|fla|zip|rar))$ {
       access_log  off;
       expires  360d;

       rewrite  ^/admin/(.+)$ /backend/web/$1 break;
       rewrite  ^/admin/(.+)/(.+)$ /backend/web/$1/$2 break;
       try_files  $uri =404;
   }

   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;
   }
   
   #禁止访问的文件或目录
   location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)
   {
       return 404;
   }
   
   #一键申请SSL证书验证目录相关设置
   location ~ \.well-known{
       allow all;
   }
   
   location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
   {
       expires      30d;
       error_log off;
       access_log /dev/null;
   }
   
   location ~ .*\.(js|css)?$
   {
       expires      12h;
       error_log off;
       access_log /dev/null;
   }
   access_log  /www/wwwlogs/qinimai.com.log;
   error_log  /www/wwwlogs/qinimai.com.error.log;
}


上一篇:云主机安装Python环境教程

下一篇:云主机部署Python Django