A hosting platform for node.js application.
- Support all node.js applications.
- Support multi-instance for each application.
- Support sandbox, stand-alone instance to isolate each application.
- Auto-restart application when it crashes.
- Support virtual host
-
Download AppHouse from repository:
git clone https://[email protected]/cfsghost/AppHouse.git -
Install dependencies with NPM utility:
npm install -
Start AppHouse as root:
sudo node apphouse.jsNote: AppHouse needs root permission to make safety sandbox with chroot
There is no need modifying your application for AppHouse, just put your application on specific folder:
-
Create a directory for new application:
mkdir apps/myapp -
Put your application in the new place (using
expressto generate application for example):cd apps/myapp npm install express jade express -
Restart AppHouse
Note: AppHouse will run
app.jsin application folder.
You can modify apphouse.cfg in the application directory, it's formatted using JSON(JavaScript Object Notation).
Here is options:
-
domains: set domains for application. (An application can have multiple domain)Example:
domains: [ "test1.example.com", "test2.example.com" ] -
instances: set number of instances for application. (Default: 1)
AppHouse doesn't have tools to manage applications and service, but we've created a new project to do this job:
Copyright(c) 2012 Fred Chien <[email protected]>
Copyright(c) 2012 Mandice Company. (http://www.mandice.com/)