Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
操作系统:Ubuntu 用户:someuser(ubuntu用户)
我有一个使用 phantomjs 生成屏幕截图并保存到磁盘的视图。
它适用于“someuser”拥有的目录。但是,静态和媒体目录(nginx 可以访问)归“www-data”所有,这个 phantomjs 无法将图像写入其中。
有什么解决办法吗?
让我知道更多问题。
你可以试试这个:
sudo usermod -a -G www-data user (ubuntu user) #Add user to www-data group sudo chown -R user:www-data path/to/static/media/directory
希望这可以帮助 。