Philippe Caseiro
3e7bc2b56b
- manager-nginx.conf - portal-nginx.conf - handler-nginx.conf - lmConf-1.js (Any configuration modification in LemonLDAP Manager prevail over this configuration) Adding diagnose script - HTTP Ping the manager, the handler and the portal Adding posttempalte script - Enable nginx configuration if necessary - Add an entry ton /etc/hosts with the 3 web names
17 lines
402 B
Bash
Executable File
17 lines
402 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $(CreoleGet activerLemon) = "oui" ];then
|
|
. /usr/lib/eole/diagnose.sh
|
|
manager=$(CreoleGet managerWebName)
|
|
portal=$(CreoleGet authWebName)
|
|
handler=$(CreoleGet reloadWebName)
|
|
|
|
EchoGras "*** LemonLDAP::NG"
|
|
TestHTTPPage "Manager" "http://${manager}/"
|
|
TestHTTPPage "Portal" "http://${portal}/"
|
|
TestHTTPPage "Handler" "http://${handler}/"
|
|
echo
|
|
fi
|
|
|
|
exit 0
|