All Questions
4 questions
1
vote
1
answer
4k
views
503 Service Temporarily Unavailable in Openshift Flask Application
I've been struggling to deploy a Flask application in Openshift. First of all, I tried to deploy an application I am developing. As I didn't succeed, I decided to create a sample Hello World and ...
1
vote
1
answer
2k
views
How to deploy Flask wsgi application on OPENSHIFT
I have flask app that work perfect on vps with using mod_wsgi. On vps server I configure virtual-host.
I clone my project from github and create wsgi file in repo dir.
wsgi:
#!/usr/bin/python
...
2
votes
1
answer
2k
views
deployment of Flask application to OpenShift
I would like to deploy my application which works fine on my local unix server to OpenShift cloud. I registered there and checkout git repository. But I don't know what to do now.
Application in this ...
1
vote
2
answers
946
views
Flask Application not starting up, server says HTTP 500
My flask app is in $OPENSHIFT_REPO_DIR/repo directory with files as
..repo$ ls
runserver.py app.py
and my app.py looks like
def run_simple_httpd_server(app, ip, port=8080):
from wsgiref....