laravel部署到linux,nginx环境 php-fpm的配置中用户和组设定

vim /etc/php-fpm.d/www.conf 
#修改用户组配置 
user = nginx
group = nginx
#将用户组设置为nginx
chown -R nginx:nginx /path/to/your/webroot

laravel的如下目录需要有写权限

chmod -R 0775 bootstrap
chmod -R 0775 storage

针对laravel的vhost配置如下:

 root /www/path/to/public/;
    location / {
        index index.php;
        if (!-e $request_filename) {
            rewrite ^/(.*)$ /index.php/$1 last;
            break;
        }
    }

    # 解析PHP
    location ~ .+\.php($|/) {
        set $script $uri;
        set $path_info "/";
        if ($uri ~ "^(.+\.php)(/.+)") {
            set $script    $1;
            set $path_info    $2;
        }

        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php?IF_REWRITE=1;
        include fastcgi_params;
        fastcgi_param PATH_INFO $path_info;
        fastcgi_param SCRIPT_FILENAME $document_root/$script;
        fastcgi_param SCRIPT_NAME $script;
        fastcgi_param HTTP_PROXY "";
    }


你可能感兴趣的:(laravel)