RE: [pylons-discuss] Static Files on Elastic Beanstalk

2017-11-03 Thread Kamal Gill
Do you have HTTPS configured for Elastic Beanstalk, per the docs at http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/configuring-https.html ? If so, you’ll need to add a setting to ensure the generated routes start with https. There are a couple of ways to do this. The first option is to

Re: [pylons-discuss] Static Files on Elastic Beanstalk

2017-11-03 Thread Andrew Burnett
Can you elaborate or point toward some lit that will help? I'm unfamiliar with how to set these, especially when running on AWS with Elastic Beanstalk. Thanks, Andrew On Friday, November 3, 2017 at 12:45:34 PM UTC-7, Michael Merickel wrote: > > I would guess that you need to provide a more

Re: [pylons-discuss] Static Files on Elastic Beanstalk

2017-11-03 Thread Michael Merickel
I would guess that you need to provide a more specific path to the files... I have no idea what the CWD is for that yaml file and whether `static/` is enough... I would guess that it needs to be something like `myapp/static/` at the very least to point to a location on disk relative to the root of

Re: [pylons-discuss] Static Files on Elastic Beanstalk

2017-11-03 Thread Andrew Burnett
I will try this and let you know. I've been down this route with `static_url` instead of `static_path`. Does that make a difference? The issue is in the server returning 404 Not Found errors when attempting to serve my static assets. On Thursday, November 2, 2017 at 12:28:32 PM UTC-7, Kamal