Joe.Fang 发表于 2020-5-10 00:17:17

lnmp1.7 安装YII2.0 服务器无法访问

显示截图:
https://s1.ax1x.com/2020/05/10/Y1lX9K.png

server
    {
      listen 80;
      #listen [::]:80;
      server_name yii.com;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/web;

      include rewrite/yii2.conf;
      #error_page   404   /404.html;

      # Deny access to PHP files in specific directory
      #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

      include enable-php-pathinfo.conf;

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      location ~ /.well-known {
            allow all;
      }

      location ~ /\.
      {
            deny all;
      }

      access_log/home/wwwlogs/yii.com.log;
    }

server
    {
      listen 443 ssl http2;
      #listen [::]:443 ssl http2;
      server_name yii.com;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/wwwroot/web;

      ssl_certificate /usr/local/public/yii.com.crt;
      ssl_certificate_key /usr/local/public/yii.com.key;
      ssl_session_timeout 5m;
      ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;
      ssl_prefer_server_ciphers on;
      ssl_ciphers "TLS13-AES-256-GCM-SHA384:TLS13-CHACHA20-POLY1305-SHA256:TLS13-AES-128-GCM-SHA256:TLS13-AES-128-CCM-8-SHA256:TLS13-AES-128-CCM-SHA256:EECDH+CHACHA20:EECDH+CHACHA20-draft:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5";
      ssl_session_cache builtin:1000 shared:SSL:10m;
      # openssl dhparam -out /usr/local/nginx/conf/ssl/dhparam.pem 2048
      ssl_dhparam /usr/local/nginx/conf/ssl/dhparam.pem;

      include rewrite/yii2.conf;
      #error_page   404   /404.html;

      # Deny access to PHP files in specific directory
      #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

      include enable-php.conf;

      location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
      {
            expires      30d;
      }

      location ~ .*\.(js|css)?$
      {
            expires      12h;
      }

      location ~ /.well-known {
            allow all;
      }

      location ~ /\.
      {
            deny all;
      }

      access_log/home/wwwlogs/yii.com.log;
    }


Joe.Fang 发表于 2020-5-10 00:18:37

本帖最后由 Joe.Fang 于 2020-5-10 00:19 编辑


修改: include enable-php-pathinfo.conf;==> include enable-php.conf;
其他的没修改过,

licess 发表于 2020-5-10 09:38:13

先排查一下防跨目录设置
如果还不行,按常见问题开启php错误日志

Joe.Fang 发表于 2020-5-10 21:00:04

licess 发表于 2020-5-10 09:38
先排查一下防跨目录设置
如果还不行,按常见问题开启php错误日志
感谢,已解决, 注释掉一项, 路径:/usr/local/nginx/conf/fastcgi.conf

应该是在最后一行

fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";

添加网站的时候, 是修改的/home/wwwroot/default ==> 网站目录名, 创建号之后在更改文件夹名字, 然后西创建网站目录名
/home/wwwroot/web ==>/home/wwwroot/123
新建:
/home/wwwroot/web
页: [1]
查看完整版本: lnmp1.7 安装YII2.0 服务器无法访问