This site has been retired. For up to date information, see handbook.gnome.org or gitlab.gnome.org.


[Home] [TitleIndex] [WordIndex

1. Deploying Snowy with mod_python

1.1. Introduction

If you are running your own server, you may wish to deploy Snowy using Apache and mod_python. This guide is intended to help you do just that. Thanks to Piotr Gaczkowski and jmullan for the help with these instructions.

1.2. Prerequisites

You need to already have apache and mod_python installed and properly configured. There are various guides for this:

(Please add a link for your distro if you don't see one)

I'm also assuming that since you run your own server, you've already tested your Snowy install using the Django test server (manage.py runserver), followed the instructions in INSTALL, etc.

1.3. Setup

In this example, we will run Snowy in http://mydomain.com/~USERNAME/snowy , so you need to create ~/public_html/snowy/.htaccess with the following contents:

SetHandler python-program
PythonPath "['/home/USERNAME/src', '/home/USERNAME/src/snowy'] + sys.path"
PythonHandler django.core.handlers.modpython
SetEnv DJANGO_SETTINGS_MODULE snowy.settings
PythonOption django.root /~USERNAME/snowy
PythonDebug On

Important notes:

1.4. Troubleshooting

If you are using sqlite, make sure that your local_settings.py specifies an absolute path to the database file.


2024-10-23 10:59