You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2021. It is now read-only.
So this is a simplified version of instructions I executed:
deis create
git push deis master # this version included a Dockerfile
rm Dockerfile; git add .; git commit
git push deis master
deis scale web=1
deis scale cmd=0
deis open now resulted with 503 Service Unavailable. When I look at the generated router config file, I see this:
server {
#...
location / {
return 503;
}
}
So it seems there is something preventing from generating the config for proxying requests to the web process.
Hello,
So this is a simplified version of instructions I executed:
deis opennow resulted with503 Service Unavailable. When I look at the generated router config file, I see this:So it seems there is something preventing from generating the config for proxying requests to the
webprocess.