Couldn't find package "libapache2-mod-proxy-html" Ubuntu 16.04

apache, mod-proxy, proxy, python, ubuntu

Solution

`libapache2-mod-proxy-html` was a transitional package for `apache2-bin`.

Since the translation is completed it should be already included in the `apache2-bin` Xenial package. In fact you can find the `mod_proxy_html.so` file in the apache2-bin file list (Xenial).

My guess is that the command

a2enmod proxy_html

should solve the issue.

As a final note: you should probably post the question on askubuntu.

Problem

I want to install `libapache2-mod-proxy-html` package but it gives me error. Just to check what packages are available, I pressed tab after the command below. ``` devadmin@Dev-LinuxVM:/$ aptitude install -y libapache2-mod-proxy- ``` libapache2-mod-proxy-msrpc libapache2-mod-proxy-uwsgi-dbg libapache2-mod-proxy-uwsgi ``` devadmin@Dev-LinuxVM:/$ aptitude install -y libapache2-mod-proxy-html ``` Couldn't find any package whose name or description matched "libapache2-mod-proxy-html" Couldn't find any package whose name or description matched "libapache2-mod-proxy-html" No packages will be installed, upgraded, or removed. 0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 0 B of archives. After unpacking 0 B will be used I am using Ubuntu 16.04.1 LTS (xenial)

Original source