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.

209 questions
0
votes
1 answer

How do I connect to MSSQL server from Linux

I need a read-only access to a MSSQL server from a Linux box (more precisely, from a Heroku Cedar stack via Rails). Is it doable?
Alexei Averchenko
  • 261
  • 1
  • 2
  • 7
0
votes
1 answer

rsyslog from Heroku drain creates empty log files

I'm sending logs from my Heroku app to an rsyslog server, but the resulting log files seem to come up empty. The rsyslog configuration for receiving remote messages is as follows: $template…
Jeff Lee
  • 171
  • 4
0
votes
1 answer

Does ‘git push’ create a new SSH session?

I've set up a new EC2 instance with Heroku-like deploy. I followed this article cuppster.com/2011/05/12/diy-node-js-server-on-amazon-ec2/. My problem is... If I push to the server several times, CPU jumps to 90%. I was wondering, what does it…
0
votes
1 answer

WiFi Hotspot Security / Payments

I'm setting up a local coffee shop network-And we need to display a terms of service / authentication screen before they can connect to internet. Internet --> PC/SERVER --> Wireless Router Then install software on the PC bridge to run the prompt? If…
Scott A. McLeod
0
votes
1 answer

How to deploy a Zend Framework app using the 'public' directory on Heroku?

Basically for a Facebook tab I have a PHP app and want Heroku to use the 'public' folder as the web server's root folder instead of pointing to the very root of the app files. Any help would be awesome as it seems Heroku doesn't have a ton of…
gokujou
  • 265
  • 1
  • 4
  • 9
0
votes
4 answers

How to host email for multiple domains?

I'm building a multi-tenant CMS application that will be hosted on Heroku (which uses Amazon EC2, etc). I will also be adding the ability to register/transfer a domain through the application. I would like to add the ability for my customers to be…
Andrew
  • 3,453
  • 9
  • 33
  • 36
0
votes
1 answer

Debugging DNS Issues Remotely

I am having a DNS issue with at least a couple of customers being unable to hit our website at all with chrome just reporting "This webpage is not available" (both over http or https), but DNS and network config is not my strong…
latentflip
  • 103
  • 2
0
votes
1 answer

Invalid ssl certificate issue with heroku

I executed following command openssl req -new -x509 -days 999 -nodes -out myapp.key -keyout myapp.pem And then I tried following command heroku ssl:add myapp.pem myapp.key --app myapp I am getting following error message ! Pem is invalid / Key…
0
votes
2 answers

Host www.xyz.in not found: 3(NXDOMAIN)

I have a domain purchased from name.com - I am using heroku for hosting a rails app for this domain. Today I tried to setup DNS for this domain. The top level domain works fine but when I try to setup CNAME for "www", I get the following error…
user70692
  • 3
  • 1
  • 2
0
votes
0 answers

Point a wildcard subdomain in go daddy to a heroku app

So I have purchased a domain on go daddy by the name let's say example.com. Now I want to direct all *.example.com to a nextjs app hosted on heroku. I followed the standard process to point any subdomain to a heroku app which was Add a custom…
0
votes
0 answers

Heroku Redis upgrade from free to paid stuck in "preparing (plan upgrade in progress)"

I'm trying to upgrade Heroku Redis from the free hobby plan to a paid version but it seems eternally stuck in in "preparing (plan upgrade in progress)". What's the best way to deal with this?
Marc
  • 123
  • 2
0
votes
1 answer

Send email from Heroku server using gmail account and PHPMailer

I have a Heroku app which has a php script that send out an email. The email sent always goes to spam. Let's say the heroku app is mywebsite.herokuapp.com and my email is mywebsite@gmail.com. Based on my research I understand that the problem might…
yem
  • 101
  • 2
0
votes
0 answers

Sometimes POST request from client to backend does not contain body

We run 2 different apps on Heroku. Both have an API written with PHP and Symfony and run through an Apache. One of the frontend clients is written with Vue the other with Angular. In the API we serialize command and query objects from the POST body.…
0
votes
0 answers

How much traffic can a heroku page handle?

I have recently deployed my rails website with Heroku. I am currently on the paid Hobby Dyno. My web page consits of a log in function, 13 five minute long sound files, a few images and a bunch of zoom links. I am expecting around 200 users at any…
Linus
  • 1
  • 1
0
votes
1 answer

Heroku.yml is not getting bash script

I was trying to deploy my backend in heroku with docker. Here is my heroku.yml file setup: addons: - plan: heroku-postgresql as: DATABASE build: docker: web: mymeds/Dockerfile release: image: web command: -…
Shahrear Bin Amin
  • 155
  • 1
  • 2
  • 8
1 2 3
13
14