Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

How to forge a local file system server with IGEPv2 Board

970 bytes added, 12:27, 28 October 2011
no edit summary
=== Apache ===
We are going to install Apache HTTP Server: <pre>sudo apt-get install apache2 apache2-mpm-prefork </pre> After installation, we are going to make some configurations: <pre lang="php">mkdir /home/&lt;user&gt;/web</pre> We create that folder called web to store all the web files.
Now we are going to change some basic Apache configuration, edit: /etc/apache2/sites-available/default  Search line: '''DocumentRoot /var/www/''' Replace by: '''DocumentRoot /home/&lt;user&gt;/web/''' Search line: '''Directory /var/www/'''&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; '''Options Indexes FollowSymLinks MultiViews''' &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  Replace by: '''Directory /home/&lt;user&gt;/web/''' '''&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Options FollowSymLinks''' Search line: '''AllowOverride None''' Replace by: '''AllowOverride all''' <br>  /etc/init.d/apache2 restart  <br>  <br>  <br> Under construction
=== PHP ===
4,199
edits