溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

nginx不支持yii解決方法

發(fā)布時(shí)間:2021-01-13 14:00:28 來源:億速云 閱讀:198 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)nginx不支持yii解決方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

nginx不支持yii怎么辦?nginx部署yii2的方法

只需要修改nginx.config配置文件內(nèi)容,在里面增加server,并且root寫成index.php文件在的目錄下就可以

還要設(shè)置config/web.php里的cookieValidationKey值,以及一些目錄的訪問權(quán)限需要設(shè)置成777

nginx配置文件內(nèi)容

#user  nobody;
worker_processes  1;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid        logs/nginx.pid;
events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    #access_log  logs/access.log  main;
    sendfile        on;
    #tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;
    #gzip  on;
    server {
        listen       80;
        server_name  localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location / {
            root   html;
            index  index.php index.html index.htm;
        }
        #error_page  404              /404.html;
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
            include         fastcgi.conf;
        }
        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
    #yi正mjh graduation project config
    server {
        charset utf-8;
        client_max_body_size 128M;
           
        listen 8080;
        server_name www.mjh.com;
        root    /var/www/mjhGraduation/web;
        index   index.php;
        access_log      /var/www/mjhGraduation/access.log main;
        error_log       /var/www/mjhGraduation/error.log;
        location /{
                 # Redirect everything that isn't a real file to index.php
                try_files $uri $uri/ /index.php?args;
        }
        location ~ \.php$ {
                include fastcgi.conf;
                fastcgi_pass 127.0.0.1:9000;
                try_files $uri = 404;
        }
        error_page 404 /404.html;
        location ~ /\.(ht|svn|git){
                deny all;
        }
    }
    #gsh graduation project config
    server {
        charset utf-8;
        client_max_body_size 128M;
           
        listen 8088;
        server_name www.mjh.com;
        root    /var/www/gshGraduation/web;
        index   index.php;
        access_log      /var/www/gshGraduation/access.log main;
        error_log       /var/www/gshGraduation/error.log;
        location /{
                 # Redirect everything that isn't a real file to index.php
                try_files $uri $uri/ /index.php?args;
        }
        location ~ \.php$ {
                include fastcgi.conf;
                fastcgi_pass 127.0.0.1:9000;
                try_files $uri = 404;
        }
        error_page 404 /404.html;
        location ~ /\.(ht|svn|git){
                deny all;
        }
    }
    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;
    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
}

關(guān)于“nginx不支持yii解決方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI