HomeHome › 服务器 › Debian上完整卸载并重装Nginx Debian上完整卸载并重装Nginx By 瓜老汉 / Published on 14/04/2020 服务器 ####卸载 sudo apt-get remove nginx # 可删除除/etc/nginx 配置文件外的所有文件 sudo apt-get purge nginx or rm -rf /etc/nginx #删除nginx配置文件 sudo apt-get autoremove #自动删除安装nginx时安装的依赖包 #####重装 apt-get -o DPkg::options::=--force-confmiss --reinstall install nginx