适用于 OpenResty / ngx_lua 的基于企业微信组织架构的登录认证
- 新增验证类型的选择,默认是扫码认证,可以设为客户端认证(详见qr_connect);
- 新增是否只允许在企业微信浏览器中打开,默认允许任何浏览器(详见only_wxwork_browser);
- 记录企业微信的UserID到Session中。
参考: https://k8scat.com/posts/linux/install-openresty-on-ubuntu-from-source-code/
cd /usr/local/openresty/site/lualib
git clone https://github.com/k8scat/lua-resty-http.git
git clone https://github.com/k8scat/lua-resty-jwt.git
git clone https://github.com/jkeys089/lua-resty-hmac.git
git clone https://github.com/libingtong/lua-resty-weauth.git
http {
lua_package_path "/usr/local/openresty/site/lualib/lua-resty-weauth/lib/?.lua;/usr/local/openresty/site/lualib/lua-resty-hmac/lib/?.lua;/usr/local/openresty/site/lualib/lua-resty-jwt/lib/?.lua;/usr/local/openresty/site/lualib/lua-resty-jwt/vendor/?.lua;/usr/local/openresty/site/lualib/lua-resty-http/lib/?.lua;;";
}
server {
listen 443 ssl;
server_name weauth.example.com;
resolver 8.8.8.8; # 调用企业微信接口需要设置 DNS
ssl_certificate /usr/local/openresty/cert/weauth.example.com.crt;
ssl_certificate_key /usr/local/openresty/cert/weauth.example.com.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers AESGCM:HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
lua_ssl_verify_depth 2; #非必须
lua_ssl_trusted_certificate /etc/pki/tls/certs/ca-bundle.crt; #非必须
if ($time_iso8601 ~ "^(\d{4})-(\d{2})-(\d{2})T(\d{2})") {
set $year $1;
set $month $2;
set $day $3;
}
access_log logs/weauth.example.com_access_$year$month$day.log main;
error_log logs/weauth.example.com_error_$year$month$day.log;
access_by_lua_block {
local weauth = require "resty.weauth"
weauth.corp_id = ""
weauth.app_agent_id = ""
weauth.app_secret = ""
weauth.callback_uri = "/weauth_callback"
weauth.logout_uri = "/weauth_logout"
weauth.app_domain = "weauth.example.com"
weauth.jwt_secret = "thisisjwtsecret"
weauth.only_wxwork_browser = false
weauth.qrConnect = false
weauth.ip_blacklist = {"47.1.2.3"}
weauth.uri_whitelist = {"/js","/static/"} #不验证的路径示例
weauth.department_whitelist = {1, 2}
weauth:auth()
}
location / {
root /data/www;
}
}
server {
listen 80;
server_name weauth.example.com;
location / {
rewrite ^/(.*) https://$server_name/$1 redirect;
}
}
配置说明:
corp_id
用于设置企业 IDapp_agent_id
用于设置企业微信自建应用的AgentId
app_secret
用于设置企业微信自建应用的Secret
callback_uri
用于设置企业微信扫码登录后的回调地址(需设置企业微信授权登录中的授权回调域)logout_uri
用于设置登出地址app_domain
用于设置访问域名(需和业务服务的访问域名一致)jwt_secret
用于设置 JWT secretqr_connect
是使用扫码,还是网页授权,默认是扫码only_wxwork_browser
是只能在微信浏览器中打开,还是可以在任意浏览器中打开,默认可以在任意浏览器中打开ip_blacklist
用于设置 IP 黑名单uri_whitelist
用于设置地址白名单,例如首页不需要登录认证department_whitelist
用于设置部门白名单(数字),默认不限制部门
- lua-resty-feishu-auth 适用于 OpenResty / ngx_lua 的基于飞书组织架构的登录认证
K8sCat k8scat@gmail.com