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
1 answer

Nginx proxy doesn't work as expected

I'm using dokku (small heroku) on host with nginx, my container is using apache and it's exposing port 8052. This is configuration inside of .conf which is enabled and works fine: LISTEN 8052 ServerAdmin veeenex@localhost …
VeeeneX
  • 103
  • 2
0
votes
3 answers

CNAME to Heroku app results in 301 redirect

TL;DR: I want my custom domain to be shown in the address bar, not the CNAME. I have an app hosted on Heroku at try-elixir-phoenix.herokuapp.com. I bought the domain from Namecheap, and configured the CNAME entry there: www.tryelixir.online CNAME…
asymmetric
  • 140
  • 7
0
votes
0 answers

How come Heroku PHP buildpack's Apache is using almost no memory

When using Heroku's PHP buildpack, I check ps aux: 23438 25568 0.0 0.0 119600 48 ? Ss Feb06 0:32 httpd -D NO_DETACH -c Include /app/vendor/heroku/heroku-buildpack-php/conf/apache2/heroku.conf 23438 25569 0.0 0.0 867316 276…
user181157
  • 101
  • 1
0
votes
1 answer

What's going wrong with my AWS domain?

I registered a domain with AWS, but I have my server at Heroku and wanted to use CloudFlare with it. So I set out to set this up. I now have my nameservers pointing to tim.ns.cloudflare.com and thomas.ns.cloudflare.com. There's also a SOA record…
0
votes
3 answers

Generating a CSR fails with 'routines:RSA_sign:digest too big for rsa' - for heroku

I tried generating a CSR by following Heroku instructions. Specifically openssl genrsa -des3 -out server.pass.key 2048 openssl rsa -in server.pass.key -out server.key openssl req -nodes -new -key server.key -out server.csr # input data here I get…
GregPK
  • 117
  • 1
  • 3
0
votes
1 answer

How to export a Heroku-friendly Postgres dump from Ninefold?

I am trying to migrate my postgres database from ninefold to heroku. The command I'm using to export is: PGPASSWORD=password pg_dump -h ipaddress -p port -U user -d database -Fc --no-acl --no-owner -x -O -N postgis > ninefold-backup.dump Then…
Andrew
  • 3,293
  • 8
  • 32
  • 35
0
votes
2 answers

Root Domain cannot forward to www (Heroku, Cloudns)

My website (http://www.carshare.hk) has a problem with the naked domain. When it is served with the root domain, the server cannot hit anything. But I have followed through the guides from heroku about adding domains already. When I typed heroku…
0
votes
1 answer

Transfer enterprise data - tiny volumes - to AWS S3 for Heroku app

What would you suggest is the best option to get "enterprise" data from a client into AWS S3 so we can provide Heroku hosted SaaS? The data volumes are tiny, it's just daily spreadsheet/csv records. But to provide a SaaS solution we need to get the…
rigyt
  • 53
  • 1
  • 5
0
votes
1 answer

Heroku redirect file to serve from CDN

My Heroku backed app is now serving a certain JS file, but due to high rpms I would like to serve it from my CDN. Is it possible to make a redirect from myapp.herokuapp.com/file.js to mycdn.com/bucket/file.js without makeing the redirect inside my…
maephisto
  • 131
  • 4
0
votes
1 answer

Cannot add dynos on Heroku app after seemingly successful app push

I recently launched an app on Heroku using git push heroku master and got a couple of errors: remote: raise ValueError("Missing distribution spec", line) remote: ValueError: ('Missing distribution spec', '+ Python (2.7)') However,…
Max Power
  • 21
  • 1
  • 4
0
votes
0 answers

Domain is not resolved properly

My site is hackertoolbox.com. In Route53, there is a cname record whose value is hackertoolbox.herokuapp.com. My domain uses the right route53 DNS. whois result matches the route53 delegation set. hackertoolbox.herokuapp.com works well. Neither…
wanghq
  • 101
  • 3
0
votes
1 answer

Transferring a Heroku app to Domain

I am a relative newcomer to servers and hosting websites so I thought I'd ask a simple question here. To transfer a heroku app to a domain, I looked up the instructions here. https://devcenter.heroku.com/articles/custom-domains I then ran heroku…
0
votes
3 answers

Correct DNS configuration to use Route 53 for existing domain

we are trying to make our heroku app available under example.com (changed here). I followed the heroku guide for using Route 53 for that (https://devcenter.heroku.com/articles/route-53). However, I think already in the DNS configuration of the zone…
Heinrich
  • 900
  • 4
  • 21
  • 35
0
votes
1 answer

Maintaining uptime on heroku

I'm sure this been asked many times before, but I can't find any previous questions here. We had an outage on our Heroku applications the EU last night. What techniques or strategies can we use to maintain a higher uptime when Heroku has major…
jamesj
  • 143
  • 2
  • 6
0
votes
0 answers

What does it mean that no cert given is a "domain name certificate"?

I'm trying to add an SSL certificate to Heroku but I'm getting an error: heroku certs:add domain.pem private.key Resolving trust chain... failed ! No certificate given is a domain name certificate. What does it mean that no certificate given is…
Jason Swett
  • 1,458
  • 4
  • 23
  • 37