添加网站后修改nginx配置报错

岁岁平安

微信图片_20201217143453.png

OCI runtime exec failed: exec failed: container_linux.go:345: starting container process caused "exec: \"/usr/local/phpstudy/tmp/1014725868\": permission denied": unknown

问题比较着急?请联系QQ:760483
  • 岁岁平安
  • 岁岁平安    2020-12-17 14:55:092楼

    // 比如我要将配置修改为下面这样:

    server{

    listen 80 ;

    server_name www.zhenxuan.com ;

    location /backend {

                    try_files $uri $uri/ /index.php?$args;

    root /www/zhenxuan/backend/web/;

    index index.php index.html error/index.html;

    }

    location /frontend {

                    try_files $uri $uri/ /index.php?$args;

    root /www/zhenxuan/frontend/web/;

    index index.php index.html error/index.html;

    }

    location  ~ [^/]\.php(/|$) {

    root /www/zhenxuan/;

    fastcgi_pass 127.0.0.1:7221;

    fastcgi_split_path_info  ^(.+\.php)(.*)$;

    fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;

    fastcgi_param  PATH_INFO $fastcgi_path_info;

    include fastcgi.conf;

    }

    #DenyFiles

    location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)

    {

    return 404;

    }

    }

    +添加回复

  • 回复
  • Peter·Python
  • Peter·Python    2020-12-17 14:44:011楼

    不要手动修改,用小皮的设置选项

    +添加回复

  • 回复

    首先非常感谢您的帮助! 然后就是继续刚才的问题,他现有的设置不能够满足我的配置需求或者说我并不熟悉这个功能,比如我要进行如下配置,在单一虚拟主机域名下映射到不同的目录,我该如何进行设置呢? 此处对应 www.zhenxuan.com/backend location /backend { try_files $uri $uri/ /index.php?$args; root /www/zhenxuan/backend/web/; index index.php index.html error/index.html; } 然后再来一个 www.zhenxuan.com/api location /api { try_files $uri $uri/ /index.php?$args; root /www/zhenxuan/api/web/; index index.php index.html error/index.html; }

    岁岁平安  作者 · 2020-12-17 14:51:53
    回复

    群里问吧,群里用户多,他们应该能解决你的疑问

    Peter·Python · 2020-12-17 15:02:24
    回复

    可以提供一个群号吗?我平时不用QQ  我是linux系统  上面也没装 wine QQ

    岁岁平安  作者 · 2020-12-17 15:03:29
    回复

    官方高级交流群:708911972 官方基础交流群:836334183,二选一

    Peter·Python · 2020-12-17 15:08:12
    回复

    我去加  非常感谢您的答复   感激不尽

    岁岁平安  作者 · 2020-12-17 15:11:46
    回复