Report this

What is the reason for this report?

How to use Github hooks when you disabled the root user

Posted on April 13, 2021

For security reasons, I disabled the root user and created a new user to use SSH.

When I use rsync, I rsync to the /home/my-name/my-dir directory and then mv to the /var/www/html/my-dir director, then used sudo chown -R www-data:www-data my-dir.

I’d like to create a Github hook that when I push to the repo, pulls the repo to my droplet.

Q1. Should I pull to /home/my-name/my-dir and them moved to the /var/www/html/my-dir and use chown command to change the owner?

Q2. Is there any tutorial how to set this up?

Thank you.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi there,

What I could suggest is allowing your non-root user to run this one specific command with sudo without being prompted for a password.

You can configure that you can change the sudoers file on your server. The correct way to make changes to the sudoers file is by using the following command:

sudo visudo

At the bottom of the file add the following:

your_user_here ALL = NOPASSWD: /bin/chown -R www-data\:www-data /path/to/your-dir

Then save and exit. After that when you run sudo /bin/chown -R www-data\:www-data /path/to/your-dir with your non-user you will not be prompted for your sudo password.

Hope that this helps. Regards, Bobby

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.