首页 > 代码库 > 搭建openresty需要注意到的地方

搭建openresty需要注意到的地方

一键安装openresty

./install.sh

安装好后,修改nginx.conf配置文件

cd /usr/local/openresty/nginx/conf/nginx.conf

server_name   auth_api.com

cd /usr/local/openresty/lualib/ttq

修改lua脚本配置文件

vim ini.lua,注意:redis需要设置密码,不然不能访问

还需要把purview.sql两个表导入指定数据库

导入参考数据:

INSERT INTO `ttq_appid_list` VALUES (‘1‘, ‘TTQ_iL9mT5lbtl17w5M5‘, ‘xmcsX3fmwznd27Zq3W9h‘, ‘1466488625‘);

INSERT INTO `ttq_appid_white_list` VALUES (‘1‘, ‘TTQ_iL9mT5lbtl17w5M5‘, ‘127.0.0.1‘);

在yaf中应用的时候需要修改配置文件:

application_dev.ini

authenticator.url="http://auth.api.herry_a.com:8080"

搭建openresty需要注意到的地方