Re: problem deploying two apps

2016-03-02 Thread Bernardo Garcia
Hi frocco May be this post can ve useful for you, althought instead of uwsgi use gunicorn http://michal.karzynski.pl/blog/2013/10/29/serving-multiple-django-applications-with-nginx-gunicorn-supervisor/ On Tuesday, March 1, 2016 at 11:56:57 AM UTC-5, frocco wrote: > > Hi, > > I followed this > h

Re: problem deploying two apps

2016-03-02 Thread frocco
I changed the second project to use STATIC_URL = *'/static1/' and the apache conf to **ALIAS /static1/* *and the images now show* On Wednesday, March 2, 2016 at 9:02:40 AM UTC-5, frocco wrote: > > From your link, it looks like I am using the WSGIDaemonProcess and > WSGIScriptAlias > The app run

Re: problem deploying two apps

2016-03-02 Thread frocco
>From your link, it looks like I am using the WSGIDaemonProcess and WSGIScriptAlias The app runs fine, but images do not render unless I remove one project. As soon as I add the second project, images do not render in static. Each project has there own static directory under project name On Wedne

Re: problem deploying two apps

2016-03-02 Thread frocco
That is correct, sorry for my wording. This is two separate projects that need to run on the same server. On Tuesday, March 1, 2016 at 6:17:33 PM UTC-5, James Schneider wrote: > > On Tue, Mar 1, 2016 at 8:56 AM, frocco > > wrote: > >> Hi, >> >> I followed this >> https://docs.djangoproject.com/e

Re: problem deploying two apps

2016-03-01 Thread James Schneider
On Tue, Mar 1, 2016 at 8:56 AM, frocco wrote: > Hi, > > I followed this > https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/modwsgi/ > > First app works fine, if I deploy the second app, the settings conflict > and images are not rendered. > > I'm assuming that you have two separate pro

Re: problem deploying two apps

2016-03-01 Thread Daniel Roseman
On Tuesday, 1 March 2016 16:56:57 UTC, frocco wrote: > > Hi, > > I followed this > https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/modwsgi/ > > First app works fine, if I deploy the second app, the settings conflict > and images are not rendered. > > [code] > Alias /static /var/www/d

problem deploying two apps

2016-03-01 Thread frocco
Hi, I followed this https://docs.djangoproject.com/en/1.9/howto/deployment/wsgi/modwsgi/ First app works fine, if I deploy the second app, the settings conflict and images are not rendered. [code] Alias /static /var/www/django/track/static Require all granted Require all g