Hi, I'm Canan
Oups ...
Never forget impossible is 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
Enable GZIP in Nginx
Ubuntu
Steps
- Edit the mime.types file
Open the file
sudo nano /etc/nginx/mime.types
Check that the following lines exist, otherwise add them:
application/vnd.ms-fontobject eot;
application/x-font-ttf ttf;
font/opentype ott;
font/x-woff woff;
- Edit the nginx.conf file
- > Open the file
sudo nano /etc/nginx/nginx.conf
- > Check that the following lines are identical, otherwise modify them:
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;