在nginx,CentOS 7上启用CACHE

时间:2015-05-28 11:33:10

标签: caching nginx static

我是nginx的新手,很抱歉,如果之前已经提出这个问题。

我正在尝试在nginx上启用缓存。我找到了解决方案NGINX Cache

问题是我在/etc/nginx/ngin.conf找到的我的nginx.conf看起来并不像在那里张贴的那样。所以我有点困惑,不知道该怎么做。

这是我的nginx.conf

#user  nginx;
worker_processes  1;

#error_log  /var/log/nginx/error.log;
#error_log  /var/log/nginx/error.log  notice;
#error_log  /var/log/nginx/error.log  info;

#pid        /var/run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    #tcp_nodelay        on;

    #gzip  on;
    #gzip_disable "MSIE [1-6]\.(?!.*SV1)";

    server_tokens off;

    include /etc/nginx/conf.d/*.conf;
}

那么我该如何应用我找到的解决方案或者我应该做些什么?

请帮忙

1 个答案:

答案 0 :(得分:1)

请参阅nginx.conf底部的include /etc/nginx/conf.d/*.conf;行?这是您符号链接或保存实际主机配置文件的地方..您在其他帖子中看到的文件,通常由server {...}括起来。

您可以随时更改路径或添加另一个路径,一旦nginx可以成功解析包含的配置文件(nginx -t将测试文件),您将使用nginx -s reload <优雅地重新启动nginx / p>

<强>更新

下面的内容会进入你的filename.conf文件

server {
    listen 80;
    root /somewhere/on/your/machine;

    location / {
        expires 1d;
        # other caching related directives

        gzip            on;
        gzip_min_length 1000;
        gzip_proxied    expired no-cache no-store private auth;
        gzip_types      text/plain application/xml;
        # replace with your own gzip config

    }
}

有关更详细的文档,请参阅http://nginx.org/en/docs/