Is this the right entry for the sudoers file to give php access to reload nginx?

StackOverflow https://stackoverflow.com/questions/8600941

  •  24-03-2021
  •  | 
  •  

سؤال

I need to give php access to reload nginx. The command is nginx -s reload so is the entry in the sudoers file below correct?

www-data ALL=NOPASSWD: nginx -s reload

Then would <?php exec('sudo nginx -s reload'); ?> or shell_exec be the function to use?

Thanks

هل كانت مفيدة؟

المحلول

I would use the absolute path to nginx, but your syntax looks correct. You would use shell_exec()

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top