apache: Add proxy_html module needed by i2p app

Enable by default so that app installation (algo during backup restore) does not
cause apache to restart and show error pages.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Sunil Mohan Adapa 2019-04-01 16:16:57 -07:00
parent de4d8ac841
commit 70a9f4a6ae
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2
2 changed files with 2 additions and 1 deletions

View File

@ -120,6 +120,7 @@ def subcommand_setup(arguments):
webserver.enable('proxy', kind='module')
webserver.enable('proxy_http', kind='module')
webserver.enable('proxy_fcgi', kind='module')
webserver.enable('proxy_html', kind='module')
webserver.enable('rewrite', kind='module')
webserver.enable('macro', kind='module')

View File

@ -20,7 +20,7 @@ FreedomBox app for Apache server.
from plinth import actions
version = 6
version = 7
is_essential = True