Setting up a Python website with Ajenti V (Django example)

In this tutorial we will set up a Python website with Ajenti V, using a test Django project as example. 
Prerequisites: Ajenti V (NGINX, Python-WSGI packages)

(Optional) creating a Django project
1. Create an empty project and DB 
$ django-admin.py startproject testsite
$ cd testsite
$ ./manage.py syncdb
$ echo 'STATIC_ROOT="public/static"' >> testsite/settings.py
$ mkdir -p public/static
$ ./manage.py collectstatic
2. Create virtualenv
$ virtualenv env
$ source env/bin/activate
$ pip install Django gunicorn
Setting up Ajenti V
1. Navigate to Ajenti panel, and open Websites section. Click Create button, and expand newly created New Website entry.
Image 13

2. Uncheck Maintenance mode checkbox, and Path to your website's path.
Image 14

3. Under Identification page, Create and set a domain entry.
Image 17

4. Under Content page, Create a new content entry of type Python.

Image 27

Set the Virtualenv path (/env) and Django-generated WSGI module name (testsite.wsgi)

Image 28

4. Optionally, create an additional Static Files entry for Django's static files

Image 29


5. Click Apply changes

6. Done! Now navigate to http://domain/.

Denne artikel var nyttigt for 22 personer. Er denne artikel nyttig for dig?

Kundesupport af UserEcho