ISPConfig 3 дээр Python, Django вэб тохируулах

Дусал нэвтэрхий толь-с
23:14, 30 Есдүгээр сар 2021-ий байдлаарх Almas (Яриа | оруулсан хувь нэмэр) хэрэглэгчийн хийсэн залруулга
(ялгаа) ←Хуучны засвар | Одоогийн засвар (ялгаа) | Дараагийн засвар→ (ялгаа)

mod_python идэвхтэй хөгжүүлэлт хийгдэхгүй байгаа бололтой. mod_wsgi ашиглах нь дээр юм шиг байна. Доор дараа хэрэг болж магадгүй гээд хууллаа. Яг өөрөө туршиж үзээгүй ч туршиж үзээд засаж оруулах байх.

Django and mod_wsgi

I have set up ispconfig3 + django + mod_wsgi and have gotten it to run in a vhost just fine for me. Of course, it very well might not work for anyone else and there are no stated or implied guarantees this will work.

Prerequisites: I followed this tutorial http://www.howtoforge.com/perfect-server-ubuntu-9.10-ispconfig-3

Then:

1) installed django1.1 and latest mod_wsgi (latest version from source) as root in server (also, any other django projects that you want ) 2)

Steps:

Log into ISPCONFIG 3 admin and perform the following: 1) create new website www.example.com and user with SSH access 2) create DB in IS

Next: 1) ssh into your space and from your root dir (not web) enter following command:

Code:

django-admin.py startproject myprojectnamehere

(replace last part with your proj name, of course)

Next: CD into your new project : i.e. Code:

cd myprojectnamehere

Next: create 3 directories (eggs,templates,.wsgi)

Next: open and edit the settings.py file and add your DB information and other settings and save the file.

Next: (note you can use your own names here) cd into the .wsgi directory and create a file inside that dir called django.wsgi This will be your mod_wsgi configuration file that will be referenced in your apache config. The names of both the dir and file are up to you be remember to change them in the following options and wsgi files.


Open and edit your .wsgi and add the following (making sure to change the paths to your server specs)


Code:

import os import sys os.environ['PYTHON_EGG_CACHE'] = '/var/www/clients/client1/web1/myprojectnamehere/eggs'

os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'

import django.core.handlers.wsgi application = django.core.handlers.wsgi.WSGIHandler() sys.path.append('/var/www/clients/client1/web1/myprojectnamehere') sys.stdout = sys.stderr


Next: Save the file and go back to the ISCONFIG3 ADMIN section

Next: go into your website section and click on the "Options" tab at the top of the section. In the Apache Directives section, enter the following making name changes where necessary. Code:

Alias /site-media/ "/var/www/clients/client1/web1/web/site-media/" <Directory "/var/www/clients/client1/web1/web/site-media"> Order allow,deny Options Indexes Allow from all IndexOptions FancyIndexing </Directory>

Alias /admin-media/ "/usr/local/lib/python2.6/dist-packages/Django-1.1.1-py2.6.egg/django/contrib/admin/media/" <Directory "/usr/local/lib/python2.6/dist-packages/Django-1.1.1-py2.6.egg/django/contrib/admin/media"> Order allow,deny Options Indexes Allow from all IndexOptions FancyIndexing </Directory>

<Directory "/var/www/clients/client1/web1/myprojectnamehere"> Options +ExecCGI Allow from all </Directory>

WSGIScriptAlias / /var/www/clients/client1/web1/myprojectnamehere/.wsgi/django.wsgi


It is very important that the WSGIScriptAlias directive come after your Apache Alias directives so that WSGI doesn't try to process /site-media/, /admin-media/ etc......

Please note I use site-media and admin-media which have to be set in the settings.py file.



That is pretty much it. Restart/Reload apache and it should work. I hope this saves someone else the time it took me to figure it all out.


Some final Notes:

I use setuptools to install django, and django projects that are available at pil. This creates the python egg issue addressed by the python egg cache config in the .wsgi file.

I had to restart apache a couple of times during my trials, but I think it might work if you can get it right the first time.


This is your basic project site for your django project. Please read all you can at djangoproject.org about building your site and troubleshooting.


https://www.howtoforge.com/community/threads/django.24109/