我正在寻找一个模块,它为反向代理(优选nginx)进行身份验证/访问控制.该模块应该:1. user authentication using credential stored in database (such as postgres)2. Monitoring the ongoing connection and take ...
我正在寻找一个模块,它为反向代理(优选nginx)进行身份验证/访问控制.该模块应该:
1. user authentication using credential stored in database (such as postgres)
2. Monitoring the ongoing connection and take action if certain access credential is met. For example, time is expired
3. open source (allow customization) and nginx, ruby(rails) preferable.
似乎OpenResty与nginx可以完成这项工作.这是article在nginx上讨论Lua的访问控制.这是一个示例(nginx和Lua),给我的印象是可以执行访问的文件片段(access_by_lua_file):
server {
listen 8080;
location / {
auth_basic "Protected Elasticsearch";
auth_basic_user_file passwords;
access_by_lua_file '../authorize.lua'; #<<<=====
proxy_pass http://elasticsearch;
proxy_redirect off;
}
}
我是反向代理访问控制的新手.任何想法都表示赞赏.
解决方法:
这是nginx网站上一个有趣的article,它回答了上面的问题. https://www.nginx.com/blog/nginx-plus-authenticate-users/
沃梦达教程
本文标题为:ruby-on-rails – 用于反向代理NGINX的认证/访问控制模块
基础教程推荐
猜你喜欢
- swift 字符串String的使用方法 2023-07-05
- swift版webview加载网页进度条效果 2023-07-05
- UEFI开发基础HII代码示例 2023-07-07
- ruby-on-rails-使用Nginx的Rails的多阶段环境 2023-09-21
- R语言数可视化Split violin plot小提琴图绘制方法 2022-12-10
- R语言基于Keras的MLP神经网络及环境搭建 2022-12-10
- Go web部署报错panic: listen tcp xxxxxxx:8090: bind: cannot assign requested address 2023-09-05
- R包ggtreeExtra绘制进化树 2022-12-14
- asm基础——汇编指令之in/out指令 2023-07-06
- R语言-如何将科学计数法表示的数字转化为文本 2022-11-23