This repository has been archived on 2019-04-13. You can view files and clone it, but cannot push or open issues/pull-requests.
httpd-ldap/entrypoint.sh

10 lines
250 B
Bash
Raw Normal View History

2019-04-12 14:27:43 +02:00
#!/bin/ash
sed -i \
-e "s/@@LDAP_SERVER@@/$LDAP_SERVER/" \
-e "s/@@LDAP_BASE@@/$LDAP_BASE/" \
-e "s/@@LDAP_USER@@/$LDAP_USER/" \
-e "s/@@LDAP_PASSWORD@@/$LDAP_PASSWORD/" \
/usr/local/apache2/conf/httpd.conf
exec httpd-foreground