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

Trouble installing Heroku taps gem using RVM

I tried to install the taps gem on my rvm, but got the following result: larson:~ larson$ rvm gem install taps Successfully installed taps-0.3.23 1 gem installed Installing ri documentation for taps-0.3.23... Installing RDoc documentation for…
1
vote
0 answers

Does the Facebook Scribe Server support authenticating its clients and securing the client/server connection?

I plan on running a Facebook Scribe Server on an AWS EC2 providing logging services to several Heroku hosted Rails clients. Is there a mechanism to authenticate Scribe clients in cloud-based scenarios like one described above? If so, can the…
1
vote
1 answer

Host subdomain on heroku

What is the simplest answer to host a subdomain (only, not the main domain) on Heroku? I tried question Config Subdomain to point to heroku app but the Heroku KB pages it points to are gone (404) For my specific case, I want to point dev.example.com…
Ivan
  • 148
  • 5
1
vote
3 answers

Host domain.com in a different server than domain.com/blog

How can I point the DNS in order to have /blog and / in 2 different servers? One of them is on PHPFog (PHP hosting) and the other on Heroku (Rails Hosting). Regards. Thanks
donald
  • 453
  • 1
  • 6
  • 17
1
vote
1 answer

Heroku and VPS firewall

Is there any way of opening a firewall port only to Heroku hosts? Since Heroku is a cloud service, is there any way I can ensure where are they connecting from? In Heroku docs only securing conections to RDS is documented but can I secure…
1
vote
1 answer

Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch: Rasa chatbot Heroku

I have been trying to deploy a bot on heroku for days now without success. My bot has an action server hosted on another app. The main bot contains a Dockerfile with the content below: # from rasa base image FROM rasa/rasa:2.8.2-full # copy all…
Sirjon
  • 11
  • 1
  • 3
1
vote
0 answers

How to enable MultiViews on Heroku?

I'm trying to enable MultiViews on an Heroku site, but I can't understand how to do it. When I do it on servers I control, I do it on the httpd.conf file, but here I have to use it in a Directory block, and I don't know what to write there. Simply…
o0'.
  • 411
  • 5
  • 20
1
vote
0 answers

Rails app login with devise behind Nginx reverse proxy

I have a rails app deployed on heroku and I would like to use nginx reverse proxy to access it on a subdirectory. Almost everything is working except for the devise login/signup & this is only an issue when accessing through the proxy. My rails app…
projectmind
  • 111
  • 1
1
vote
1 answer

flask, gunicorn (gevent), sqlalchemy (postgresql): too many connections

I created Flask WSGI-application which uses gunicorn as WSGI-server, for DB it uses PostgreSQL through Flask SQLAlchemy extension. That's all hosted on Heroku. gunicorn configuration number of workers: 2; number of workers connections: 1024; number…
Amaimersion
  • 111
  • 7
0
votes
1 answer

Heroku app.json configuration not working for review app

Below is my app.json: { "environments": { "review": { "addons": [ "heroku-postgresql:in-dyno" ], "scripts": { "postdeploy": "php artisan migrate --seed" } } } } In my…
eithed
  • 103
  • 7
0
votes
0 answers

DNS records added based on info provided by Heroku, but URL still not resolving correctly

Awhile ago I registered the domain name www.testapp.id with my registrar (Namecheap). The application I want it to point to is a Rails app hosted on Heroku. I'm following the instructions on Heroku's site here, specifically: You can check the…
Richie Thomas
  • 171
  • 1
  • 3
0
votes
0 answers

Control heroku restarts

I have an app (online board game) on heroku free hosting. It takes 1 web dyno (NodeJS server) and so far it works fine except one thing: Automatic Dyno Restarts It doesn't seem to respect 24h rule (yesterday I deployed new patch at 21:00, today it…
Fen1kz
  • 101
  • 1
0
votes
1 answer

Should I Change heroku app location from US to regional? If yes how to do it?

I have a basic application which was created with heroku but at the time of creation there was no mention about regions. As a result my application region is US instead of India. Are there any problems by being in a region that I don't belong to?…
0
votes
0 answers

Why do I get a Too Many Redirects Error on my GNU Social Heroku deployment?

I'm using heroku, apache, php and gnusocial. My plan is to deploy a GNU Social instance for my family. I fiddled with the composer.json file, to where it looks like this: { "name": "jmm/me-and-mine", "description": "GNU social is a free…
0
votes
1 answer

Terraform Heroku Automated Certifcate Management

I cannot find any documentation about Heroku's automated certificate management. The terraform documentation for heroku_cert only refers to certificates which are generated manually: # Create a new Heroku app resource "heroku_app" "default" { name…
Chrisissorry
  • 139
  • 7