10 lines
227 B
Bash
10 lines
227 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$(CreoleGet activer_apache)" = 'oui' ];then
|
||
|
# gestion des modes apache
|
||
|
ENMOD="ssl rewrite authnz_ldap proxy headers proxy_http proxy_wstunnel"
|
||
|
CreoleRun "a2enmod $ENMOD >/dev/null" web
|
||
|
fi
|
||
|
|
||
|
exit 0
|