如何在 conf 文件更改时自动重新启动 apache

如何在 conf 文件更改时自动重新启动 apache

我正在使用 apache 进行测试,在 vim 上经常编辑 000-defualt.conf 文件,保存,然后运行service apache2 restart

当该文件发生更改时,我有什么选项可以自动重新启动 apache?

答案1

只需使用通知等待(安装你的发行版的inotify-tools软件包):

while inotifywait -e close_write 000-defualt.conf; do service apache2 restart; done

相关内容