Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 556 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 556 Bytes

CODEditor

Installation instructions for Ubuntu 14.04

A. Clone the repository.

git clone [email protected]:agordillo/CODEditor.git

B. Install apache and edit the /etc/apache2/sites-available/000-default.conf file.

Alias /Codeditor/ "#{CODEditorFolder}"
<Directory "#{CODEditorFolder}">
   Options Indexes FollowSymLinks MultiViews
	AllowOverride None
	Order allow,deny
	allow from all
</Directory>

Restart apache then.

sudo /etc/init.d/apache2 restart

Access to http://localhost/Codeditor/ .

That's it!