emerg]: "proxy_cache_path" directive is not allowed here in /usr/local/nginx-0.7.60/conf/nginx.conf:35
Igor Sysoev
is at rambler-co.ru
Thu Jun 18 10:11:35 MSD 2009
On Thu, Jun 18, 2009 at 01:46:18PM +0800, XUFENG wrote:
> Hi
> Nginx version:0.7.60
> Nginx compiling option:
> ./configure --prefix=/usr/local/nginx-0.7.60
> Nginx conf:
>
> server {
> listen 8080;
> server_name test.example.com;
> charset utf-8;
>
> access_log logs/test.example.com-access.log main;
>
> proxy_cache_path /tmp/cache levels=1:2 keys_zone=one:10m;
> location / {
> index index.php index.html index.htm;
> proxy_pass http://static;
> proxy_set_header Host $host;
> proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
> proxy_cache one;
> proxy_cache_valid 200 30d;
> proxy_cache_valid any 1h;
> }
> }
> When run /usr/local/nginx-0.7.60/sbin/nginx
> it showed:
> emerg]: "proxy_cache_path" directive is not allowed here in /usr/local/nginx-0.7.60/conf/nginx.conf:35
>
> what is wrong?
proxy_cache_path can be set on http {} level only.
--
Igor Sysoev
http://sysoev.ru/en/
More information about the nginx
mailing list