Novius OS – Open Source Content Management System
Sponsored Link
Novius OS Features
A CMS which adapts to your content and your business
Novius OS is designed as an applications platform, hence the ‘OS' suffix. By selecting applications amongst existing ones or creating your own custom applications, you tailor the CMS to your content—not the reverse.
Create once, publish everywhere
With Novius OS, your content is well-structured and therefore ready to be published to any communication channel: website, newsletter, social media, blog and more. Manage all of your digital communication with one single tool. Read our vision.
Ready to go international
No extra plug-in nor advanced configuration is required to manage multilingual content with Novius OS. What's more, the interface is available in 6 languages (including English, Spanish, French, Russian and Japanese) and new translations are regularly added thanks to the community.
Created for content strategists and information architects
The architect draws the plans, the system follows them. “Build your CMS” is Novius OS philosophy, an adaptive CMS designed to power websites tailor-made by content professionals.
A time-saving interface
Working from your computer or tablet, either alone or with your team, is straightforward thanks to the smart interface. Being thought for professionals, Novius OS allows multi-tasking: tabs make you more efficient and your workspace is saved between two sessions.
Centralised and re-usable media files
Media files, whatever channel they come from, are all centralised and organised in the Media Centre, so you can easily re-use them. Applications can adjust images to their requirements (e.g. resize, crop) and all files are optimised for search engines.
A great platform for your business applications and custom developments
Developers too will love Novius OS. Built with the latest web technology, it provides them with many development tools: ‘Build your app' wizard, unified UI, behaviours and more.
Novius OS is Open Source, get involved!
Novius OS is an Open Source project (distributed under the GNU AGPL v3 license) for more transparency and openness. From Japan to the USA, contributors are taking part in improving and promoting the project. Come meet us on the forum or GitHub, you are welcome.
Install Novius OS on ubuntu 15.04 server
First you need to make sure you have Installed ubuntu 15.04 LAMP server
Now open the terminal and run the following command
cd /var/www/html
sudo wget http://raw.github.com/novius-os/ci/master/0.2/tools/install.sh && sh install.sh
Now you need to create virtual host using the following syntax
sudo vi /etc/apache2/sites-available/novius-os.conf
Add the following lines
<VirtualHost *:80& gt;
DocumentRoot /var/www/html/novius-os/public
ServerName novius-os
<Directory /var/www/html/novius-os/public>
AllowOverride All
Options FollowSymLinks
</Directory>
</VirtualHost>
Change the line ServerName with your domain name when installing on a live server.
Change /var/www/html/novius-os with the folder you installed Novius OS into.
Enable the new VirtualHost
sudo a2ensite novius-os
Then, reload Apache to apply the new configuration.
sudo service apache2 reload
Open your browser at http://serverip/novius-os/ (replace novius-os with the directory name you’ve chosen) this will start the installation process follow the on screen instructions to complete the installation.
Check the Novius-OS documentation for next steps.