├── .gitignore ├── LICENSE ├── auto-install.sh ├── conf ├── CentOS-7-reg.repo ├── CentOS-8-reg.repo └── local_settings.py ├── log └── all.log ├── manage.py ├── pwdselfservice ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── readme.md ├── requirement ├── resetpwd ├── __init__.py ├── apps.py ├── form.py ├── utils.py └── views.py ├── screenshot ├── 143fce31873f4d7a4ecd7a7b8c6a24c.png ├── 212473880-4a59c535-85bb-42d2-a99a-899265c83136.png ├── 212474177-dd68b0c9-81cc-4eb0-9196-e760784e3f69.jpg ├── 212474178-2214cfe0-d5a2-4f62-85bd-531705030200.jpg ├── 212474222-e1c13e1b-bb6f-4523-b040-24a65055d681.png ├── 212474233-44ed826b-dd3a-4d0f-b7ed-983e667a1a60.png ├── 212474293-0cd60898-22c3-4258-ac4c-dfee52a6cf1e.png ├── QQ截图20230116152954.png ├── h5微应用--开发管理.png ├── h5微应用--权限管理.png ├── h5微应用.png ├── 创建H5微应用--版本管理与发布.png ├── 创建H5微应用.png ├── 创建H5微应用01.png ├── 创建H5微应用02.png ├── 创建H5微应用03.png ├── 创建H5微应用04.png ├── 创建H5微应用05.png ├── 创建H5微应用06.png ├── 微信图片_20221220140900.png ├── 微信小应用01-企业可信IP.png ├── 微信小应用01-应用主机.png ├── 微信小应用01-应用主页-配置.png ├── 微信小应用01-网页授权及J-SDK配置.png ├── 微信小应用02.png ├── 微信小应用03.png ├── 微信小应用04.png ├── 微扫码13.png ├── 微扫码14.png ├── 微扫码15.png ├── 微扫码16.png └── 扫码成功.png ├── static ├── css │ └── style.css ├── img │ ├── favicon.ico │ ├── icon.jpg │ ├── logo.png │ ├── mima-icon.jpg │ ├── unlock.jpg │ └── user-icon.jpg ├── js │ ├── dingtalk.open.js │ ├── html5.min.js │ └── respond.min.js └── layui │ ├── css │ ├── layui.css │ └── modules │ │ ├── code.css │ │ ├── laydate │ │ └── default │ │ │ └── laydate.css │ │ └── layer │ │ └── default │ │ ├── icon-ext.png │ │ ├── icon.png │ │ ├── layer.css │ │ ├── loading-0.gif │ │ ├── loading-1.gif │ │ └── loading-2.gif │ ├── font │ ├── iconfont.eot │ ├── iconfont.svg │ ├── iconfont.ttf │ ├── iconfont.woff │ └── iconfont.woff2 │ └── layui.js ├── templates ├── auth.html ├── base.html ├── farvirate.ico ├── index.html ├── messages.html ├── reset_password.html └── unlock.html ├── utils ├── ad_ops.py ├── dingding_ops.py ├── format_username.py ├── logger_filter.py ├── storage │ ├── __init__.py │ ├── cache.py │ ├── kvstorage.py │ └── memorystorage.py ├── tracecalls.py ├── wework_api │ └── abstract_api.py └── wework_ops.py ├── uwsgi.ini └── uwsgiserver /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/LICENSE -------------------------------------------------------------------------------- /auto-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/auto-install.sh -------------------------------------------------------------------------------- /conf/CentOS-7-reg.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/conf/CentOS-7-reg.repo -------------------------------------------------------------------------------- /conf/CentOS-8-reg.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/conf/CentOS-8-reg.repo -------------------------------------------------------------------------------- /conf/local_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/conf/local_settings.py -------------------------------------------------------------------------------- /log/all.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/manage.py -------------------------------------------------------------------------------- /pwdselfservice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/pwdselfservice/__init__.py -------------------------------------------------------------------------------- /pwdselfservice/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/pwdselfservice/settings.py -------------------------------------------------------------------------------- /pwdselfservice/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/pwdselfservice/urls.py -------------------------------------------------------------------------------- /pwdselfservice/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/pwdselfservice/wsgi.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/readme.md -------------------------------------------------------------------------------- /requirement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/requirement -------------------------------------------------------------------------------- /resetpwd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resetpwd/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/resetpwd/apps.py -------------------------------------------------------------------------------- /resetpwd/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/resetpwd/form.py -------------------------------------------------------------------------------- /resetpwd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/resetpwd/utils.py -------------------------------------------------------------------------------- /resetpwd/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/resetpwd/views.py -------------------------------------------------------------------------------- /screenshot/143fce31873f4d7a4ecd7a7b8c6a24c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/143fce31873f4d7a4ecd7a7b8c6a24c.png -------------------------------------------------------------------------------- /screenshot/212473880-4a59c535-85bb-42d2-a99a-899265c83136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/212473880-4a59c535-85bb-42d2-a99a-899265c83136.png -------------------------------------------------------------------------------- /screenshot/212474177-dd68b0c9-81cc-4eb0-9196-e760784e3f69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/212474177-dd68b0c9-81cc-4eb0-9196-e760784e3f69.jpg -------------------------------------------------------------------------------- /screenshot/212474178-2214cfe0-d5a2-4f62-85bd-531705030200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/212474178-2214cfe0-d5a2-4f62-85bd-531705030200.jpg -------------------------------------------------------------------------------- /screenshot/212474222-e1c13e1b-bb6f-4523-b040-24a65055d681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/212474222-e1c13e1b-bb6f-4523-b040-24a65055d681.png -------------------------------------------------------------------------------- /screenshot/212474233-44ed826b-dd3a-4d0f-b7ed-983e667a1a60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/212474233-44ed826b-dd3a-4d0f-b7ed-983e667a1a60.png -------------------------------------------------------------------------------- /screenshot/212474293-0cd60898-22c3-4258-ac4c-dfee52a6cf1e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/212474293-0cd60898-22c3-4258-ac4c-dfee52a6cf1e.png -------------------------------------------------------------------------------- /screenshot/QQ截图20230116152954.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/QQ截图20230116152954.png -------------------------------------------------------------------------------- /screenshot/h5微应用--开发管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/h5微应用--开发管理.png -------------------------------------------------------------------------------- /screenshot/h5微应用--权限管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/h5微应用--权限管理.png -------------------------------------------------------------------------------- /screenshot/h5微应用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/h5微应用.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用--版本管理与发布.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用--版本管理与发布.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用01.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用02.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用03.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用04.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用05.png -------------------------------------------------------------------------------- /screenshot/创建H5微应用06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/创建H5微应用06.png -------------------------------------------------------------------------------- /screenshot/微信图片_20221220140900.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信图片_20221220140900.png -------------------------------------------------------------------------------- /screenshot/微信小应用01-企业可信IP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用01-企业可信IP.png -------------------------------------------------------------------------------- /screenshot/微信小应用01-应用主机.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用01-应用主机.png -------------------------------------------------------------------------------- /screenshot/微信小应用01-应用主页-配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用01-应用主页-配置.png -------------------------------------------------------------------------------- /screenshot/微信小应用01-网页授权及J-SDK配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用01-网页授权及J-SDK配置.png -------------------------------------------------------------------------------- /screenshot/微信小应用02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用02.png -------------------------------------------------------------------------------- /screenshot/微信小应用03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用03.png -------------------------------------------------------------------------------- /screenshot/微信小应用04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微信小应用04.png -------------------------------------------------------------------------------- /screenshot/微扫码13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微扫码13.png -------------------------------------------------------------------------------- /screenshot/微扫码14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微扫码14.png -------------------------------------------------------------------------------- /screenshot/微扫码15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微扫码15.png -------------------------------------------------------------------------------- /screenshot/微扫码16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/微扫码16.png -------------------------------------------------------------------------------- /screenshot/扫码成功.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/screenshot/扫码成功.png -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/img/favicon.ico -------------------------------------------------------------------------------- /static/img/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/img/icon.jpg -------------------------------------------------------------------------------- /static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/img/logo.png -------------------------------------------------------------------------------- /static/img/mima-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/img/mima-icon.jpg -------------------------------------------------------------------------------- /static/img/unlock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/img/unlock.jpg -------------------------------------------------------------------------------- /static/img/user-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/img/user-icon.jpg -------------------------------------------------------------------------------- /static/js/dingtalk.open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/js/dingtalk.open.js -------------------------------------------------------------------------------- /static/js/html5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/js/html5.min.js -------------------------------------------------------------------------------- /static/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/js/respond.min.js -------------------------------------------------------------------------------- /static/layui/css/layui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/layui.css -------------------------------------------------------------------------------- /static/layui/css/modules/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/code.css -------------------------------------------------------------------------------- /static/layui/css/modules/laydate/default/laydate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/laydate/default/laydate.css -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/layer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/layer/default/layer.css -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /static/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /static/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/font/iconfont.eot -------------------------------------------------------------------------------- /static/layui/font/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/font/iconfont.svg -------------------------------------------------------------------------------- /static/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /static/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/font/iconfont.woff -------------------------------------------------------------------------------- /static/layui/font/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/font/iconfont.woff2 -------------------------------------------------------------------------------- /static/layui/layui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/static/layui/layui.js -------------------------------------------------------------------------------- /templates/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/auth.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/farvirate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/farvirate.ico -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/messages.html -------------------------------------------------------------------------------- /templates/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/reset_password.html -------------------------------------------------------------------------------- /templates/unlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/templates/unlock.html -------------------------------------------------------------------------------- /utils/ad_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/ad_ops.py -------------------------------------------------------------------------------- /utils/dingding_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/dingding_ops.py -------------------------------------------------------------------------------- /utils/format_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/format_username.py -------------------------------------------------------------------------------- /utils/logger_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/logger_filter.py -------------------------------------------------------------------------------- /utils/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/storage/__init__.py -------------------------------------------------------------------------------- /utils/storage/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/storage/cache.py -------------------------------------------------------------------------------- /utils/storage/kvstorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/storage/kvstorage.py -------------------------------------------------------------------------------- /utils/storage/memorystorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/storage/memorystorage.py -------------------------------------------------------------------------------- /utils/tracecalls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/tracecalls.py -------------------------------------------------------------------------------- /utils/wework_api/abstract_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/wework_api/abstract_api.py -------------------------------------------------------------------------------- /utils/wework_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/utils/wework_ops.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /uwsgiserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/capricornxl/ad-password-self-service/HEAD/uwsgiserver --------------------------------------------------------------------------------