How to safely remove www pool and default site from nginx
As you know when you install nginx, it comes with default pool called www
and a default site called default
.
How can I safely remove these two? Because I have created a new pool and site and I want to release some resources by deleting these.
Solution 1:
Your file locations and service names might be a bit different, but you just need to delete the two configs and reload:
- Delete the pool configuration file
/etc/php/7.0/fpm/pool.d/www.conf
- Delete the default site configuration file
/etc/nginx/sites-available/default
and its symlink/etc/nginx/sites-enabled/default
- Reload nginx
sudo service nginx reload
- Reload fpm
sudo service php7.0-fpm reload