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
0
votes
2 answers

Redirect https url

My app is served on https://beta.myapp.com (I'm forcing https everywhere) and I now want to change to https://www.myapp.com. I'm wondering how to properly redirect every beta. request to www.. At the moment www is pointing to the same app and the…
TimPetricola
  • 103
  • 2
0
votes
1 answer

Change DNS Handling From Zerigo Without Downtime

Zerigo have just removed their free plan. As a result I need to switch out my DNS handling. The problem is that the site is live, so I need to minimize any downtime. Currently Zerigo handles both the naked domain and the www subdomain. So far as I…
Undistraction
  • 107
  • 1
  • 5
0
votes
1 answer

Tunnel HTTP traffic from an EC2 instance to an Heroku Application

We have a web application that runs perfectly on Heroku. However, that application is not available from within a given subnetwork due to firewall restriction on the Heroku IPs. So built a simple EC2 instance with an elastic IP that works within the…
Alex
  • 101
0
votes
1 answer

Receive email on heroku app

Is it possible to receive domain email at Heroku, and have you domain pointed to the correct place? For example, I want to receive email at addesses@mydomain.com, and I also want to have my DNS CNAME/A records pointed correctly. Now as I…
OneChillDude
  • 137
  • 1
  • 1
  • 9
0
votes
1 answer

Minimal container ubuntu image docker like

I'm playing around with LXC. My goal is to run a single process within a container and I'm now focusing on processes running within my container. When I create a basic LXC template on ubuntu 12.04, I've got about ten processes running (including…
rmonjo
  • 231
  • 1
  • 4
  • 12
0
votes
1 answer

In Heroku's add-on of Sendgrid, how come I don't have to enter TXT fieldn in my DNS records?

When I used Amazon SES, I had to put TXT records in my DNS so that Yahoo/Gmail knows that the server is allowed to send from my domain name. However, when I signed up for Heroku and Sendgrid Add-on (Free edition), I was not required to enter any TXT…
Alex
  • 8,111
  • 24
  • 71
  • 99
0
votes
2 answers

Two different applications (Heroku and EC2) on the one domain name

Is it possible to point my Heroku application to https://myawesomeapp.com and my EC2 wordpress server pointing to http://myawesomeapp.com ?
Coderama
  • 101
  • 3
0
votes
1 answer

Moving hosting from godaddy to heroku - need a CNAME for myapp.herokuapp.com, should I remove the A record?

I've moved my web site hosting from godaddy to heroku. In DNS, I know I need a CNAME record for myapp.herokuapp.com; but what do I do with the A record? Seems like I need that for smtp, as the smtp records use @?
gangelo
  • 103
  • 3
0
votes
1 answer

Can pingdom shut down/slow down a site on Heroku?

We have a Rails app on Heroku. We have 2 dynos. We're noticing that the site is not loading today with frequency. Lots of Request timeouts. Also, assets in particular, which are also hosted on Heroku, don't completely load, or are very slow to load.…
AdamT
  • 103
  • 1
0
votes
1 answer

What is a good way of securing credentials when deploying software to a remote server?

If I want to deploy some software to a remote server (e.g. Heroku or my own VM with SSH access) via a CI server like Jenkins Atlassian Bamboo, what's an effective way of keeping things like MySQL passwords safe? My database (potentially) contains…
Zen Savona
  • 105
  • 1
  • 6
0
votes
1 answer

Heroku apex record setup

I have a heroku application and I want to configure my domain to redirect the apex record to www.. Are there any free services I could use for this purpose? I mean other than rolling my own solution and hosting it in a free hosting environment that…
bevacqua
  • 327
  • 1
  • 3
  • 11
0
votes
1 answer

Why can’t my custom domain on Heroku be resolved?

I configured a custom domain for a small site on Heroku on Friday. It worked then, but now, it's broken. The host is nedgros.de. nedgros.herokuapp.com has address 23.21.239.236. Is does not resolve to the right application. How can I configure the…
poseid
  • 529
  • 3
  • 10
  • 20
0
votes
1 answer

Heroku SSL "certificate is only valid for the following names: *.herokuapp.com, herokuapp.com"

I'm trying to setup a Geotrust SSL certificate for my Heroku app using the SSL Endpoint addon and the instructions at https://devcenter.heroku.com/articles/ssl-endpoint. I generated my public key from my private key using: openssl rsa -in…
benedict_w
  • 123
  • 1
  • 7
0
votes
1 answer

Is it possible to mod_rewrite the full url or mask the actual url altogether?

I've been looking at the Heroku custom domain feature, which enables to change a url from subdomain.heroku.com to www.whatever.com. Is something like this possible with mod_rewrite or how is this done? It can't be a simple re-direct, can it?
frequent
  • 167
  • 8
0
votes
1 answer

godaddy's wildcard SSL certificate is not working on heroku

I have several related services on different first level subdomains of one domain. The goal is enable https in all of them. So I've bought a wildcard SSL certificate from GoDaddy for my domain: *.domain.com. Than I made a key like stated here:…
Alexander
  • 111
  • 3