Deploying Django Application to AWS Beanstalk

2015-10-21 Thread Sudhanshu Shekhar
Hi, I am a Django newbie trying to deploy my own site to the AWS beanstalk (free tier) but am facing a lot of issues doing so. The current AWS documentation seems incomplete (they don't mention setting up databases etc). Can someone please tell me how to deploy a Django application to AWS. I a

Re: Deploying django application

2009-04-06 Thread Oleg Oltar
There are few thing here: 1. I am root on that box. So can change apache conf. But have a little knowledge how to do it. So decided to use that way, as thought it's easier for hosting many django apps. So please tell me what to check. 2. I believe that htaccess is working as web server redirected

Re: Deploying django application

2009-04-05 Thread Daniel Roseman
On Apr 5, 10:04 pm, Oleg Oltar wrote: > Hi! > > I am trying to serve my project using server-spawned processes > > I created file .htaccess in my web_root directory which contains: > AddHandler fastcgi-script .fcgi > RewriteEngine On > RewriteCond %{REQUEST_FILENAME} !-f > RewriteRule ^(.*)$ mysi

Deploying django application

2009-04-05 Thread Oleg Oltar
Hi! I am trying to serve my project using server-spawned processes I created file .htaccess in my web_root directory which contains: AddHandler fastcgi-script .fcgi RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ mysite.fcgi/$1 [QSA,L] And also added file mysite.fcgi to