allow user to resend activation email
[mygpo.git] / mygpo.fcgi
blobf36c031a93ed41d0429849f176cc743d717f2110
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 # my.gpodder.org FastCGI handler for lighttpd (default setup)
5 # This file is part of my.gpodder.org.
7 # my.gpodder.org is free software: you can redistribute it and/or modify it
8 # under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or (at your
10 # option) any later version.
12 # my.gpodder.org is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
15 # License for more details.
17 # You should have received a copy of the GNU Affero General Public License
18 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
21 import sys
22 import os
24 # Add this directory as custom Python path
25 sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
27 # Set the DJANGO_SETTINGS_MODULE environment variable
28 os.environ['DJANGO_SETTINGS_MODULE'] = 'mygpo.settings'
30 # Start the FastCGI server for this application
31 from django.core.servers.fastcgi import runfastcgi
32 runfastcgi(method='threaded', daemonize='false')