mac下VM虚拟机装 centos 挂载mac 的盘做站点目录无法写入?

发布于 2022-09-04 08:30:42 字数 1287 浏览 17 评论 0

正常PHPINFO() 访问可以,但是lnmp 用户无法写入
修改过lnmp 的启动用户为root 也不行
修改nginx.conf:
user www www; 修改为 user root root;,
使用 /usr/local/nginx/sbin/nginx -s reload

因为我的程序涉及到缓存写入操作的时候提示无法写入
在linux 挂载这端,也无法用chmod -R 777 修改目录权限

mac上共享 www目录,挂载到linux 的mnt下面
挂载方式:mount -t cifs //ServerName/ShareName /mnt/wwwroot -o username=ServerUsername,password=YourPassword,nounix,sec=ntlmssp

我参考的地址是
https://segmentfault.com/a/11...

然后安装 lnmp 环境 配置虚拟机
server

{
    listen 80;
    #listen [::]:80;
    server_name 172.16.186.132;
    index index.html index.htm index.php default.html default.htm default.php;
    root  /mnt/wwwroot/devweb;

    include other.conf;
    #error_page   404   /404.html;
    location ~ [^/]\.php(/|$)
    {
        # comment try_files $uri =404; to enable pathinfo
        try_files $uri =404;
        fastcgi_pass  unix:/tmp/php-cgi.sock;
        fastcgi_index index.php;
        include fastcgi.conf;
        #include pathinfo.conf;
    }

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

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

    access_log  /home/wwwlogs/devweb.log  access;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文