Install libapache2-mod-fastcgi to Debian 8 Jessie

6,242

Check that the non-free repository is enabled by inspecting /etc/apt/sources.list.

sudo nano /etc/apt/sources.list

If non-free is not included then modify the file so that it does.

deb http://http.us.debian.org/debian  main non-free

Update your system.

sudo apt-get update

You can now install the package :

sudo apt-get install libapache2-mod-fastcgi
Share:
6,242

Related videos on Youtube

karavanjo
Author by

karavanjo

software engineer (IJavaScriptable, IPythonable) & geographer

Updated on September 18, 2022

Comments

  • karavanjo
    karavanjo over 1 year

    For supporting FastCGI feature into Apache web-server need to install libapache2-mod-fastcgi system package. The package is unavailable in default sources. How to install this package into Debian 8 Jessie?

  • kostix
    kostix about 8 years
    @karavanjo, don't do this; install libapache2-mod-fcgid instead (which is available in Debian proper). It's API-compatible with -fastcgi, has no licensing problems and has better support in Debian.