Questions tagged [heroku]

Heroku (pronounced her-OH-koo) is a cloud platform for Ruby, Node.js, Clojure, Python, PHP and JVM-based (Java, Scala, etc.) applications that features a Git-based deployment strategy, a large number of services offered as add-ons, and a full API.

Heroku (pronounced her-OH-koo) is a cloud platform for Ruby, Node.js, Clojure, Python, PHP and JVM-based (Java, Scala, etc.) applications. It features, among other things:

Git-based deployment strategy

Applications on Heroku are managed with Git. Simply pushing your codebase to Heroku is all it takes to deploy your application.

Add-Ons

Heroku offers a growing number of add-ons via its add-on provider program. Additional services, such as error tracking and reporting, incoming and outgoing email services, hosted no-SQL databases and more is available via a few clicks or commands on the prompt.

Fully Managed, Multi-Tenant Architecture

Heroku's architecture is designed to keep your app running smoothly with minimal interaction on your part. The Heroku site has a detailed explanation of its architecture.

Full API

All of Heroku's functionality can be accessed from the command line (via the Heroku gem), including managing SSH keys, increasing or decreasing the number of dynos, managing SSL certificates, adding or removing add-ons, and more.

210 questions
2
votes
2 answers

Can't login to heroku through firewall

I'm trying to connect to heroku via CLI (using heroku's Toolbelt) and I'm unable to do so. When I type my credentials, heroku replies with: Post https://api.heroku.com/login: x509: certificate signed by unknown authority I'm inside a company's…
2
votes
1 answer

Heroku geolocation dns and Amazon Route 53

I have an application running on Heroku in 2 regions, eu and us. Let's say: myapp-eu.herokuapp.com and myapp-us.herokuapp.com. I would like to setup a geolocation dns that points users to the nearest region when they visit our site at…
2
votes
1 answer

I can't get https://sendsonar.com working but sendsonar.com and https://www.sendsonar.com work just fine

I'm trying to get our domain - https://sendsonar.com - to go to https://www.sendsonar.com but for some reason this is failing. Here's the curl output: yo@ubuntu-i386:~/Sonar$ curl -kvI https://sendsonar.com * Rebuilt URL to: https://sendsonar.com/ *…
Vishal Patel
  • 123
  • 2
2
votes
1 answer

Set MX records on a CNAME domain (heroku app)

I have a heroku app on a subdomain like x.herokuapp.com which is mapped to my domain name via a CNAME record. I want emails to be handled by zohomail so I've tried setting up MX records but these seem to fail. Am I correct that even emails are…
solsol
  • 1,121
  • 8
  • 21
  • 31
2
votes
1 answer

Route 53 Naked/Root Domain Alias Record

Route 53 supports Alias records which use Amazon S3 static websites to dynamically resolve naked domains to their www counterparts using a 301 redirect. I am wondering whether the Alias record will support SSL: http:// example.com -> http://…
user3413625
  • 23
  • 1
  • 3
2
votes
1 answer

Elasticsearch on EC2, webserver on Heroku // EC2 ports only accessible from Heroku

I have an instance of Elasticsearch facing the internet on an EC2. On the other hand I have my webservice as a Heroku app. I want to secure the Elasticsearch instance and allow inbound traffic only from my Heroku app. I have found this Elasticsearch…
Diolor
  • 121
  • 4
2
votes
2 answers

Heroku Application Error on naked domain

I followed some advices to point a domain to a Heroku app. The posts I'm talking about can be found here and here. From the command line I added the custom domains to my app $ heroku domains:add www.myapp.com $ heroku domains:add myapp.com and then…
Luke
  • 127
  • 5
2
votes
1 answer

Heroku cleardb mysql error : Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

I'm trying to deploy a php app using addon cleardb/mysql with no success. What i do is: git init git add . git commit -m "First commit" heroku create --stack cedar git push heroku master heroku addons:add cleardb:ignite heroku config | grep…
Eusthace
  • 121
  • 1
  • 6
2
votes
3 answers

How do CNAME and A records interact (in this weird case)

I've managed to surprise myself with some DNS configuration. This is the actual output of my terminal: []$ host www.sepa-converter.nl www.sepa-converter.nl is an alias for sepa-converter.herokuapp.com. sepa-converter.herokuapp.com has address…
iwein
  • 191
  • 1
  • 6
2
votes
0 answers

Redis on EC2 (Heroku) : RedisToGo v/s MyRedis v/s OpenRedis v/s RedisCloud v/s Others

Are there opinions and experiences to help decide between RedisToGo v/s MyRedis v/s OpenRedis v/s RedisCloud v/s Any Other Hosted Redis offerings? The goal is to have minimal latency and maximal performance for a Heroku application (which is in EC2…
Manish Malik
  • 121
  • 1
2
votes
1 answer

Heroku: www subdomain returns "no such app"

I recently set up my octopress blog at http://davidmjohnson.me. This domain works fine, but when I try http://www.davidmjohnson.me, I get a heroku "no such app" error. Why is the www not working? Do I need to add a redirect from…
The Internet
  • 473
  • 1
  • 8
  • 17
2
votes
1 answer

Relaying requests between third party server and Heroku for static IP

I have a rails application hosted on Heroku that I need to integrate with 3rd party payments provider. The payment provider requires that my application will have a static IP for incoming and outgoing HTTPS requests. I want to deploy a proxy on a…
Gady
  • 123
  • 5
2
votes
2 answers

How do I configure a naked domain name to work using Heroku's SSL endpoint?

I recently added SSL functionality to my Rails app running on Heroku. I successfully purchased and created a certificate for my domain and using a CNAME in GoDaddy, the WWW subdomain of my app works correctly when a user browses to…
Chris Tek
  • 121
  • 3
2
votes
1 answer

Backup plan to Heroku

We host our application on Heroku. I'm wondering what can I do as a backup plan when Heroku doesn't work. If I keep a backup of everything on Rackspace, when Heroku goes down, can I change to Rackspace in the moment? Any idea how that's done? Thanks
donald
  • 453
  • 1
  • 6
  • 17
2
votes
3 answers

Administration of IaaS versus PaaS

Am I correct in understanding that generally IaaS (looking primarily at rackspace cloud servers) will provide a virtual server where OS updates, software updates, anti-virus, managed backups and other common non-hardware server admin tasks will be…
dmr83457
  • 707
  • 3
  • 9
  • 20