nginx 1.14.0 配置部署 thinkphp 5.1

先吐槽一下thinkphp的官网,不得不说thinkphp的官网太乱了,看文档还要到kancloud 才能看,查资料都是陈芝麻烂谷子了,官方文档连项目布置都没有,实在太简陋了,社区管理真心感觉thinkphp 要加把劲,隔壁 laravel china 后来居上,真的在社区活跃度还有文章质量上要比thinkphp 社区好太多
  • 下面开始上配置
    server {
        listen       80; #端口
        server_name  localhost; #主机名
        set    $root  /usr/share/nginx/html/tp5/public/; #文件入口                                                                        
        index       index.php;                                                                                                    

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {                                                                                                     
            root   html;
        }
        #静态资源
        location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$
        {
         root root   /usr/share/nginx/html;;
        }

        location ~ \.css {
           add_header  Content-Type    text/css;
        }

        location ~ \.js {
            add_header  Content-Type    application/x-javascript;
        }
        #php请求
        location / {
            include   /etc/nginx/mime.types
            try_files $uri $uri/ /index.php?$query_string;
         }
        location ~ \.php$ {
            root        $root;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
            fastcgi_param PATH_INFO $request_uri;

            include        fastcgi_params;                                                                                         
        }                                                                                                                          

        #
        location ~ /\.ht {
            deny  all;
        }                                                                                                                          
    } 

猜你喜欢

转载自blog.csdn.net/qq_36431213/article/details/80456993