Nginx and google

freebsd 8 nginx-0.8.54 proxy works perfect. Any site loads very fast
thru proxy pass but google do not wont to load! Any other indexing
sites. Help.
Here my config

worker_processes 1;
events {
worker_connections 5;
}

http {
server {
listen 8081;

access_log off;

location / {
proxy_pass http://211.141.153.146;
proxy_set_header Host $host;
}
}
}

Posted at Nginx Forum:

check your robot.txt

2011/4/30 konelli [email protected]