Add high-perf-handler-app example

This commit is contained in:
Xavier Guimard 2018-03-21 17:35:56 +01:00
parent aaaf5cfed4
commit 3499b07a6b
4 changed files with 9 additions and 0 deletions

View File

@ -3,3 +3,4 @@ debian/tmp/etc/lemonldap-ng/handler-nginx.conf
debian/tmp/etc/lemonldap-ng/test-apache2.conf
debian/tmp/etc/lemonldap-ng/test-nginx.conf
debian/tmp/var/lib/lemonldap-ng/test
lemonldap-ng-handler/example/handler.psgi

View File

@ -0,0 +1 @@
lemonldap-ng-handler/example/handler.psgi

View File

@ -1,4 +1,5 @@
Changes
example/handler.psgi
example/scripts/purgeLocalCache
example/scripts/purgeLocalCache.cron.d
lib/Lemonldap/NG/Handler.pm

View File

@ -0,0 +1,6 @@
# Simple handler that can be used to replace llng-fastcgi-server to handler
# handler requests.
# See https://lemonldap-ng.org/documentation/<version>/highperfnginxhandler
require Lemonldap::NG::Handler::Server::Nginx;
Lemonldap::NG::Handler::Server::Nginx->run( {} );