Problem
You have made some changes to the NGINX configuration and you would like to reload them without stopping and starting the server.
Solution
Use the following:
kill -HUP $(cat /var/run/nginx.pid)
Problem
You have made some changes to the NGINX configuration and you would like to reload them without stopping and starting the server.
Solution
Use the following:
kill -HUP $(cat /var/run/nginx.pid)
Problem
You are trying to install the dependencies in a PHP Symfony project, but you get an error about enable extensions in ini files.
Solution
Make sure that you install the correct packages for the PHP version you are using. So installing php-curl while using PHP 7.1 results in the error.
When installing php7.1-curl the installation completes successfuly.