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

Fixing broken SSL between Cloudflare and Heroku

Having spent three days and read dozens and dozens of blogposts and articles and tried every possible combination of CNAME records & target URLs, I still cannot get my Heroku app working with my custom domain whose DNS is handled by Cloudflare. I…
0
votes
1 answer

Heroku Django App Very Slow

I have a Django app deployed on Heroku and it is VERY slow! I'm making small queries and I'm waiting a long time (10-15+ seconds to load 12 items (a 41KB request). I'm using the Insomnia tool to test queries. When I make a 3.3KB request to my local…
0
votes
1 answer

How to redirect a Heroku subdomain to an external VPS?

I have the following setup: Wordpress blog hosted on a VPS (ip: 123.44.55.66) Heroku app live at (my-app.heroku.com) Domain name bought from Namecheap (www.my-app.com) Heroku domain is already setup so it correctly shows up on www.my-app.com I…
Henrique
  • 153
  • 1
  • 5
0
votes
0 answers

Bypass single subdomain on CloudFlare & forward it directly to Heroku with SSL

What is the best way do bypass single subdomain (we use their proxy for caching purposes but don't want it on specific subdomain to speed up some requests). Final server is hosted on Heroku. We like CloudFlare because they take care about…
knagode
  • 147
  • 1
  • 8
0
votes
1 answer

How to flush mysql remote hosts cache?

The mysql instance is a third party Heroku addon: JawsDB. Host: s554ongw9quh1xjs.cbetxkdyhwsb.us-east-1.rds.amazonaws.com Command: mysqladmin -h s554ongw9quh1xjs.cbetxkdyhwsb.us-east-1.rds.amazonaws.com -P 3306 -u username -p flush-hosts Mysql…
iamtoc
  • 103
  • 4
0
votes
1 answer

Heroku and Godaddy don't want working together

1) I have an app on heroku.com, code-w.herokuapp.com (works fine). 2)I have a domain, that I bought: gamakers.org. 3)I have done all that described in here: https://stackoverflow.com/questions/14125175/setup-heroku-and-godaddy 4) I have got no…
0
votes
1 answer

heroku redis error : NOAUTH Authentication required

I wanna deploy my django project to heroku. My project uses channels so I need to set up ASGI based environment. I have two installed add-ons in heroku app. One is Heroku-postgresql and the other is Heroku-redis. And I have two dynos please refer to…
newbie16
  • 101
  • 3
0
votes
0 answers

Why my Gandi apex/naked/bare domain doesn't work with my Heroku app?

Here are my current settings: Heroku myapp:~/workspace/myapp (master) $ heroku domains === cute-name-99999 Heroku Domain cute-name-99999.herokuapp.com === cute-name-99999 Custom Domains Domain Name DNS Target ────────────── …
Victor F
  • 101
  • 2
0
votes
0 answers

Heroku cli give an error on login

I'am install heroku cli and it show me error on login fork/exec /home/evgeny/.local/share/heroku/cli/lib/node: no such file or directory Is there any way to fix it? OS: Fedora 25
Evgeniy
  • 113
  • 1
  • 7
0
votes
1 answer

Express.js fails to serve all static files on heroku

there, I have a little problem with node.js and express on heroku. I have a node.js server that loads up my index.html page and other resources: process.env.PWD = process.cwd(); var express = require("express"); var fs = require("fs-extra"); var app…
0
votes
1 answer

how do i set up a www. CNAME with a heroku ssl which is not a wildcard

I have a website foo.com which uses heroku expedited SSL which has a SSL certificate registered to https://foo.com. I would like a request to www.foo.com/any/path to render https://foo.com/any/path without a redirect. Is there any way i can do that…
Thalatta
  • 101
  • 1
0
votes
1 answer

Comparing Heroku Postgres and Amazon RDS

I'm currently trying to figure out what type of database hosting I should use for a new project. Since I'm not the best at managing and configuring servers, Heroku is my go-to PaaS. However, someone told me I should look into using Amazon RDS as…
j3491
  • 1
  • 2
0
votes
0 answers

Can't request data with web client from parse server

I have an iOS app and a javascript web client. The iOS app is working as expected but with the web client I always get this error message: Failed to load resource: the server responded with a status of 403 (Forbidden) {"error":"unauthorized"} As a…
madmax
  • 101
0
votes
1 answer

How to mitigate DOS attack on Heroku

I am hosting one of the projects on Heroku Standard 2x dynos plan. Everything was working alright until recently I started to get notifications from our uptime checker that website is down. After closer investigation of logs I noticed that most of…
Giedrius
  • 111
  • 2
0
votes
1 answer

Heroku rename and and redirect from old URL

I have a rails app running on Heroku and I want to rename it. This seems easy enough, but I also have users whom I want to redirect to the new URL if the visit the old one. I suppose one way to do this would be to create a whole new Rails app with…
Toby 1 Kenobi
  • 247
  • 2
  • 12