Browse Source
Make sure to enable `mod_proxy` for lighttpd
master
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with
5 additions and
0 deletions
-
bibliotecha.sh
|
|
@ -262,6 +262,11 @@ function install_webserver { |
|
|
|
function configure_webserver { |
|
|
|
echo "Configuring bibliotecha under lighttpd ..." |
|
|
|
|
|
|
|
if ! grep -q mod_proxy /etc/lighttpd/lighttpd.conf; then |
|
|
|
echo "" |
|
|
|
echo 'server.modules += ("mod_proxy",)' >> /etc/lighttpd/lighttpd.conf |
|
|
|
fi |
|
|
|
|
|
|
|
if ! grep -q bibliotecha /etc/lighttpd/lighttpd.conf; then |
|
|
|
echo "" |
|
|
|
echo 'include "bibliotecha/bibliotecha.conf"' >> /etc/lighttpd/lighttpd.conf |
|
|
|