Package: freedombox-setup Version: 0.5 Severity: normal Tags: patch -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
It would be nice to enable some modules such as php5 before hand in freedombox-setup so that when Plinth is installing applications, it does not have to restart apache2 very often. Restarting apache leads the user to an error and we should try to avoid that. Although, this is not a proper fix, it is a workaround to ensure smooth user experience. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBAgAGBQJWE0jvAAoJEDbDYUQMm8lxgkMP/0EZ3k3EBwZ+lOsIr0dgZqSF KCZNtrL9rsflMwY5UUJJ6AG3JTtw7Z4F29eyyb9EGD24jBE7VCfz82wDTJbC6aRt 9/MKq9C+ToI8Sy5g2iTpJ3R/y7CHqebctGbYiWMfP8rIECuGB/sf515qkaa3ELay X+jlGWyE8t6dQTx4Su8BTKh0TJl2PBA6SU+bXIyVytmnitroIF5j/h4MlplTa/1x Iv6J7pasOT1v/UT8OsjbkCYoyTdbm51jLgEfK6OO3CxqY9Z1oE15hDHDSZVae/SC M3EySVyr9TT9GdyUo4kihQiaUNKu51xI6nnPzCEnZd2QvzIOyjBBwk2zqBb0CQeg BnKlO+ZjhrR0p2Kqo13JrBPuiD+iyiOezwhaHsrMqd+itBAgG+RV2fLqeP20cbW4 cbNo2slbMgB4uoI9EGBUOe4+FxwiMRyJNMh4lTwVmNlE1V7tYGyn/M6/xHUeCbK4 94Nt5HR7ddf4DnJTiNHbV+AXHFLiyATKPtHFEq2l63TN6OoE4xppD2PfQAtasGlw hkfGogG/Dhm6KeVnyF1pifQT9hdGGO7PlbsZ/atXgly9SO2hfoDtbmR69x85YR5k uzKMlNlESNjBI6stdfeB+8bNP/x4aO4P/UFu+E2UC3Jt0FBVyRtcGO71fcBuQsNb 1B2FKMuCRtiAXK4fy5CL =VRhk -----END PGP SIGNATURE-----
>From 6d39ace4f649324ef8389a16d32fa14f4a79f29f Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa <[email protected]> Date: Tue, 6 Oct 2015 09:28:58 +0530 Subject: [PATCH] Enable some critical apache2 modules --- setup.d/90_apache2 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.d/90_apache2 b/setup.d/90_apache2 index 8c75f0e..dd132f2 100755 --- a/setup.d/90_apache2 +++ b/setup.d/90_apache2 @@ -23,6 +23,12 @@ a2enmod alias # enable mod_headers for HSTS a2enmod headers +# enable some critical modules to avoid restart while installing +# Plinth applications. +a2enmod php5 +a2enmod cgi +a2enmod authnz_ldap + # setup freedombox site a2enconf freedombox -- 2.5.1

