The right software development partner can change everything. We help tech companies to scale up by providing them with agile software development teams.

Setup Django in apache2 Raspberry Pi

20 Apr 2016 » django, raspberry

Setup Django in apache2 Raspberry Pi. Example in this configuration for monitoring the server raspberry pi using https://github.com/k3oni/pydash/.

As following this configurations https://github.com/k3oni/pydash/wiki/Install-pyDash#3-setup-apache, how to setup it.

  • Edit in your:
/etc/apache2/sites-available/pydash.conf
  • and then, add this configuration:
Listen 192.168.1.27:8001

<VirtualHost *:8001>
    ServerName 192.168.1.27:80/pydash
    ServerAlias 192.168.1.27:8001
    DocumentRoot /var/www/pydash/
    WSGIDaemonProcess pydash display-name=%{GROUP} python-path=/var/www/pydash
    WSGIProcessGroup pydash
    WSGIScriptAlias / /var/www/pydash/pydash/wsgi.py
    Alias /static /var/www/pydash/static/
    Alias /media /var/www/pydash/media/
</VirtualHost>
  • Now restart or reload your apache
service apache2 restart

And then, you can access from another client with IP: 192.168.1.27:8001

Thanks to: Nabil Abdat