Nginx-redis服务器设置502错误的网关错误

时间:2014-05-10 08:54:27

标签: nginx redis openresty

on cloud VM
我用redis和openresty

设置了这个nginx.conf文件

my_nginx.conf -

worker_processes 1;
error_log logs/error.log;
events{
    worker_connections 1024;
}
http {
 server {
     listen 8080; 
     location / {
       redis2_query set hello world;
       redis2_query get hello;
       redis2_pass 127.0.0.1:6379;
     }
  }
}

我把这个conf作为

运行
$nginx -p pwd/ -c my_nginx.conf

现在,当我在本地浏览器中访问此虚拟机的IP地址时,我收到错误

502 bad gateway openresty/1.5.12.1

http://xxx.xxx.xxx.xxx:8080/

我在哪里弄错了?

1 个答案:

答案 0 :(得分:0)

  1. 确保您的nginx配置正确:nginx -p pwd/ -c my_nginx.conf -t
  2. 确保您的redis服务器正常运行:redis-cli -p 6379
  3. 检查error.log
  4. 我测试了你的conf并且它有效。