From: rtrimana Date: Wed, 20 Mar 2019 00:45:10 +0000 (-0700) Subject: Adding missing instructions to load missing Apache2 modules for Fidelius to work! X-Git-Url: http://plrg.eecs.uci.edu/git/?p=iotcloud.git;a=commitdiff_plain;h=fe69cd9a54070201adbd266f8e48d4f63a2e53e2 Adding missing instructions to load missing Apache2 modules for Fidelius to work! --- diff --git a/version2/src/server/README.txt b/version2/src/server/README.txt index 6eb138f..34175e7 100644 --- a/version2/src/server/README.txt +++ b/version2/src/server/README.txt @@ -30,3 +30,12 @@ SetEnv IOTCLOUD_ROOT /iotcloud/ 8) Compile cloud server by typing make 9) Copy it to the cgi-bin directory. + +10) Make sure that the 'rewrite' module is loaded. Run on the command prompt: +sudo a2enmod rewrite + +11) Make sure that the 'cgid' module is loaded. Run on the command prompt: +sudo a2enmod cgid + +12) Restart the apache server. Run on the command prompt: +sudo service apache2 restart