nagis缓存远程网站

时间:2013-03-19 13:56:57

标签: unix caching nginx

我在本地机器上安装了nginx, 我的问题是我想为我的网站做一个缓存。 帮助配置nginx

这是我的配置

服务器 {     server_name .mywebsite.com;

access_log /var/log/nginx/example.com.access.log;

    error_log /var/log/nginx/example.com.error.log;

root /var/www/example.com/html;

index index.php index.html index.htm;

# use fastcgi for all php files
location ~ \.php$
{
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include fastcgi_params;
}

# deny access to apache .htaccess files
location ~ /\.ht
{
    deny all;
}

}

但我的本地机器上没有任何静态内容

帮助请最好的问候

0 个答案:

没有答案