简体   繁体   中英

access to folder jenkins workspace for nginx, ubuntu 17

I have a folder web that jenkins manages:

/var/lib/jenkins/workspace/myweb

*jenkins user is the owner

and from nginx I set up the default site with:

   root /var/lib/jenkins/workspace/myweb/build;

before when the site was in /var/www/html was working well, the owner

not now, how I can set up the rights for the web folder to www-data ?

您可以这样使用chown命令

sudo chown www-data:www-data /var/lib/jenkins/workspace/myweb

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM