mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
25 lines
551 B
Lua
25 lines
551 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
|
|
flashs = {}
|
|
login = {}
|
|
logout = {}
|
|
|
|
-- Path of the configuration
|
|
conf_path = '/etc/ssowat/conf.json'
|
|
|
|
ngx.log(ngx.INFO, "SSOwat ready")
|