卸载 nginx 的最佳方法是什么

卸载 nginx 的最佳方法是什么

我正在尝试使用 naxsi 向 nginx 添加新模块,但我应该重新安装 nginx。删除 nginx 的更好方法是什么?

答案1

删除除配置文件之外的所有文件。

sudo apt-get remove nginx nginx-common

删除所有内容。

sudo apt-get purge nginx nginx-common

使用上述任何命令后,使用此命令来删除 nginx 不再需要的依赖项。

sudo apt-get autoremove

答案2

卸载所有内容并重新安装

sudo apt remove --purge nginx*
sudo apt autoremove
sudo apt update
sudo apt install nginx

享受

相关内容