A simple SSO for NGINX, written in Lua
Find a file
2013-10-29 10:52:05 +00:00
portal User access 2013-10-29 10:48:56 +00:00
.gitignore Add .gitignore 2013-10-20 18:31:37 +02:00
access.lua User access 2013-10-29 10:48:56 +00:00
conf.json Update conf.json example 2013-10-29 10:52:05 +00:00
hige.lua Refactoring + serving file from lua 2013-10-20 16:38:49 +02:00
init.lua Move cache to Nginx shared dict 2013-10-24 09:09:22 +00:00
README.md Update README.md 2013-10-26 15:29:51 +02:00

SSOwat

A simple LDAP SSO for nginx, written in Lua

Requirements

  • Nginx-extras from Debian wheezy-backports
  • lua-json
  • lua-ldap

OR

Installation

  • Fetch the repository
git clone https://github.com/Kloadut/SSOwat /etc/ssowat
  • Edit SSOwat configuration
nano /etc/ssowat/conf.json

Nginx conf

  • Add SSOwat's Nginx configuration (http{} scope)
nano /etc/nginx/conf.d/ssowat.conf

lua_shared_dict cache 10m;
init_by_lua_file   /etc/ssowat/init.lua;
access_by_lua_file /etc/ssowat/access.lua;

That's it !