When you reviewing your website with Google Pagespeed Insights, you could have the following error :
To fix this problem, a little modification of Nginx configuration is necessary :
In /etc/nginx/nginx.conf
file or in new file /etc/nginx/conf.d/gzip.conf
, add the following code :
gzip...
The objective of the generation and export of the SSH keys is the possibility to connect to the server without typing a login / password.
Server
On the server, .ssh
directory must be present in home directory of the user used by the client. For instance, if the client use vincent
account to...
KISS principle or Keep it simple, stupid is a design guideline that recommends simplicity and and forbidden all unnecessary complixety.
Complexity is a source of production costs, maintenance and therefore errors. Keep it simple, limit unwanted effets.
The KISS principle also makes it easier...