クラウド VM
で、この nginx.conf ファイルに redis と openresty を設定しました
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
ローカル ブラウザでこの vm の IP アドレスにアクセスすると、エラーが発生します。
502 bad gateway
openresty/1.5.12.1
http://xxx.xxx.xxx.xxx:8080/
私はどこで間違いを犯していますか?