Questions tagged [dotcloud]

dotCloud is a platform-as-a-service. It let developers deploy and scale their applications with a mix and match from a large choice of languages, databases, caching and messaging components, leaving them in full control of their technology stack. Web applications are divided into services, which are configured with a central deployment file.

171 questions
4
votes
1 answer

How to expose a tornado server serving websockets on dotcloud to the www?

I am trying to install the IPython html notebook server on dotCloud. The IPython server uses tornado with websockets (and other internal communications using zeromq on tcp sockets). Hhere's my dotcloud.yml: www: type: custom …
4
votes
2 answers

upstream prematurely closed connection while reading response header

I am trying to deploy a Flask Python app on dotcloud (which uses nginx) and MongoDB, and at one point am routing to Twitter for OAuth authorization. Upon trying to route back to my app I get the nginx error described in the title, and have no idea…
Ashu Goel
  • 323
  • 2
  • 4
  • 7
4
votes
1 answer

How can I increase the allowed size of HTTP GET requests on dotcloud?

I am doing some JSONP calls which limit me to HTTP GET as the method of talking to the server. I seem to be hitting an 8k limit on the size of the request. I have tried changing my dotcloud.yml to www: type: perl approot: webapp config: …
Chas. Owens
  • 64,182
  • 22
  • 135
  • 226
3
votes
0 answers

web2py deployment on dotcloud

Has anyone managed to deploy web2py app on dotcloud using their latest CLI? I've tried following their old doc: http://olddocs.dotcloud.com/tutorials/web2py, to deploy the standard web2py. It just doesn't work for me - it gives me "uWSGI Error wsgi…
skyork
  • 7,113
  • 18
  • 63
  • 103
3
votes
1 answer

How to setup a custom domain on dotcloud?

According to the docs on dotcloud, I have "dotcloud alias add ramen.www www.example.com" executed.Then I got "please add the following dns record: www.example.com IN CNAME gateway.dotcloud.com". I have no idea what that means. What should I do?
Carusd Ray
  • 993
  • 7
  • 11
3
votes
1 answer

Why MongoDB does not recognize my user on Celery connection?

I have a Python/Flask webapp with MongoDB database on DotCloud hosting. I would like to set up Celery on the Python service using the MongoDB service as the Celery queue. Celery starts and it finds my celeryconfig.py file, which…
Marc de Verdelhan
  • 2,501
  • 3
  • 21
  • 40
3
votes
1 answer

Solr Admin not found: "missing core name in path"

I'm running solr on dotcloud for my django app (using haystack) and am running into some trouble. I receive a 404 "missing core name in path" message when trying to access the admin, despite the fact that--as far as I can tell--I only have a single…
Matt Parrilla
  • 3,171
  • 6
  • 35
  • 54
3
votes
1 answer

dotcloud push on cygwin fails with "rsync error: unexplained error (code 255)" (similar with git and hg)

Though I have followed the usual steps for using the dotCloud CLI under Cygwin, dotcloud push fails in all cases: --rsync, --hg, and --git. I am on Windows 8 and Cygwin. How can I push successfully? Sample output: me@host /cygdrive/d/project $…
Andy
  • 35,844
  • 6
  • 43
  • 50
3
votes
2 answers

How to setup supervisord on Elastic Beanstalk?

I am migrating from DotCloud to Elastic Beanstalk. Using DotCloud, they clearly explained how to set up Python Worker, and how to use supervisord. Moving to Elastic Beanstalk, I am lost on how I could do that. I have a script myworker.py and want…
samwize
  • 25,675
  • 15
  • 141
  • 186
3
votes
0 answers

How can I minimise connections with django-celery when using CloudAMQP through dotcloud?

After spending a few weeks getting django-celery-rabbitmq working on dotcloud I have discovered that dotcloud is no longer supporting rabbitmq. Instead they recommend CloudAMQP. So I've set up CloudAMQP as per the…
user714852
  • 2,054
  • 4
  • 30
  • 52
3
votes
2 answers

How to connect to remote mysql database using php (hosted on dotCloud)

I am unable to connect to my database residing on dotCloud. I tried: $mysqli = new mysqli($db_host, $db_user, $db_password, $db_name); and $mysqli = mysqli_connect($db_host, $db_user, $db_password, $db_name); and $mysqli = new…
Naomi
  • 77
  • 1
  • 4
  • 11
3
votes
3 answers

Hosting a nodejs server on dotcloud

I am trying to host a nodejs app on the hosting service "dotcloud". My nodejs uses the package "websocket" to handle communications. ie. npm install websocket My app works great when it's running on localhost on my laptop. But when I deploy the app…
Captainlonate
  • 4,878
  • 4
  • 25
  • 35
3
votes
1 answer

Python on Dotcloud Crashes on certain functions

so I'm running a flask python app on dotcloud, and I'm basically trying to hash a password (using hashlib.sha512; the salt is uuid.uuid4().bytes). user_dict['salt'] =…
geniass
  • 371
  • 1
  • 9
  • 20
3
votes
1 answer

Two WWW in dotcloud.yml

Is it possible to put two 'www' entries into the dotcloud.yml file? I want to have a type:node and a type:static, but of which are in the 'www' section of the .yml file. Not sure if I can do that or not, but I sure would love to.
frosty
  • 21,036
  • 7
  • 52
  • 74
3
votes
1 answer

dotcloud supervisord twistd exiting early

I'm trying to set up a twistd daemon on dotcloud: My supervisord.conf file: [program:apnsd] command=/home/dotcloud/env/bin/twistd --logfile /var/log/supervisor/apnsd.log apnsd -c gp_config.py directory=/home/dotcloud/current/apnsd However, it looks…
Trent
  • 2,328
  • 3
  • 33
  • 51
1
2
3
11 12