<html><p>Then, we will edit the file /etc/nginx/nginx/nginx.conf<br />This is what I put in mine :</p><blockquote><pre><code>
user www-data;
worker_processes  2;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    access_log  /var/log/nginx/access.log;
    server_names_hash_bucket_size 64;
    sendfile        on;
    tcp_nopush     on;
    #keepalive_timeout  0;
    keepalive_timeout  65;
    tcp_nodelay        on;
    gzip  on;
    gzip_comp_level   5;
    gzip_http_version 1.0;
    gzip_min_length   0;
    gzip_types        text/plain text/html text/css image/x-icon  application/x-javascript;
    gzip_vary         on;
    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}</code></pre></blockquote> <blockquote type="cite" cite="001601d59263$9085c0c0$b1914240$@fxstudio.be"><br />I find out, thanks.<br /><br />Posted at Nginx Forum:<br />https://forum.nginx.org/read.php?2,286079,286080#msg-286080<br /><br />_______________________________________________<br />nginx mailing list<br />nginx@nginx.org<br />http://mailman.nginx.org/mailman/listinfo/nginx<br /> </blockquote><br /><br /><br /> </html>