sudo apt-get remove nginx nginx-common # Removes all but config files.sudo apt-get purge nginx nginx-common # Removes everything. | |||
How to remove Nginx ubuntu 16.04
published on 10:58:00
sudo apt-get remove nginx nginx-common # Removes all but config files.sudo apt-get purge nginx nginx-common # Removes everything. | |||
rm -rf /etc/nginx
to remove the conf files too. – scarver2 Nov 9 '13 at 21:10apt-get purge
does. – squarebear Jul 20 '14 at 13:48sudo apt-get purge nginx-common
– Francisco Luz Feb 16 '15 at 3:31sudo apt-get remove nginx-full nginx-common
– Viet Apr 24 '16 at 20:20