How load an Apache module like mod_include for SSI?

My client’s non-WordPress site installed just fine on Local.
But it makes extensive use of Server Side Includes. I can’t find a way to enable that, although a related file “include.load” seems to be inside a Local sub-directory named “mods-available”

We use SSI for HTML prototyping. We enabled it by editing the apache configuration file via SSH:

  1. SSH to local environment
  2. Edit /etc/apache2/apache.conf: you can use
    nano /etc/apache2/apache.conf
  3. Add this to the bottom of the file:
    LoadModule incude_module /usr/lib/apache2/modules/mod_include.so
  4. Restart Apache server:
    run service apache2 restart
  5. Add the lines below to your .htaccess file:

AddType text/html .shtml
AddHandler server-parsed .shtml
Options Indexes FollowSymLinks Includes

Reference: https://gist.github.com/apedregosa/f7f0edab7f4fb88d1eb689265dff6bb4