

Salut, je suis Canan
Oups ...
N'oubliez jamais que l'impossible est possible
:(
Your PC ran into a problem and needs to restart.
We're just collecting some error info, and then we'll restart for you.
0% complete

For more information about this issue and possible fixes, visit
https://www.windows.com/stopcode
If you call a support person, give them this info:
Stop code: SYSTEM_SERVICE_EXCEPTION

Activer GZIP dans Nginx
Ubuntu
Étapes
- Modifier le fichier mime.types
- Ouvrez le fichier
sudo nano /etc/nginx/mime.types
- Vérifier que les lignes suivantes existent, sinon rajoutez les :
application/vnd.ms-fontobject eot;
application/x-font-ttf ttf;
font/opentype ott;
font/x-woff woff;
- Modifier le fichier nginx.conf
- Ouvrez le fichier
sudo nano /etc/nginx/nginx.conf
- Vérifier que les lignes suivantes sont identiques, sinon modifiez les :
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_min_length 256;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/rss+xml text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/jpeg image/png image/svg+xml image/x-icon;