SSOwat/init.lua
2013-10-20 17:24:44 +02:00

25 lines
550 B
Lua

-- Remove prepending '@' & trailing 'init.lua'
script_path = string.sub(debug.getinfo(1).source, 2, -9)
-- Include local libs in package.path
package.path = package.path .. ";"..script_path.."?.lua"
-- Load libraries
json = require "json"
lualdap = require "lualdap"
math = require "math"
hige = require "hige"
-- Set random key
math.randomseed(os.time())
srvkey = math.random(1111111, 9999999)
-- Shared table
cache = {}
login = {}
logout = {}
-- Path of the configuration
conf_path = '/etc/ssowat/conf.json'
ngx.log(ngx.INFO, "SSOwat ready")