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

Put Nginx in front of Heroku app to deny access to it by IP

We have Heroku app on http://random-heroku-app.herokuapp.com and access to it(using HTTPS) must be limited to just 2 IPs. Nginx with it's allow function is perfect here. But is it possible to deploy Nginx in AWS and configure it so that it would be…
3
votes
1 answer

Why isn't my Apache reverse proxy working to translate anchor HREF attributes when sent back to the client?

I have # For blog LoadModule proxy_html_module libexec/mod_proxy_html.so LoadModule ssl_module libexec/mod_ssl.so LoadModule xml2enc_module libexec/mod_xml2enc.so SSLProxyEngine on ProxyRequests off ProxyPass /blog…
Chloe
  • 1,094
  • 4
  • 16
  • 34
3
votes
1 answer

DNS issues, site offline. nslookup periodically fails, dig/host consistently work

My site has been down intermittently for much of the day and I'm going crazy trying to debug why. It seems to be a DNS issue since changing my DNS servers from my ISP's to Google's 8.8.8.8 fixed it for my personal browser. But now that's failing,…
Gabe Durazo
  • 455
  • 5
  • 6
3
votes
1 answer

Why can't django-configurations pick up a SECRET_KEY environment variable from a heroku environment?

When trying to deploy a django app to heroku using django-configurations, I keep getting the error: ValueError: Couldn't setup configuration 'config.settings.Production': Secret value 'SECRET_KEY' is not set However, when I run heroku…
Aviendha
  • 159
  • 1
  • 3
3
votes
1 answer

disabling SSL / TLS Renegotiation on heroku

As the title sugests, is it possible to disable SSL / TLS Renegotiation when hosting a RoR application or Heroku? I ran the Nessus security tool on my website and the only serious warning showing up is that the website is possibly open to DoS…
3
votes
1 answer

Configure MX record when DNS are pointing to a Heroku application

SEND EMAILS I want to use my_domain.com addresses, and overcome the 5 mails/minute limitation of Gandi, my domain provider. My application is hosted on Heroku. For this, I am considering 2 options: Use the Sendgrid add-on from Heroku to send…
citraL
  • 133
  • 1
  • 4
3
votes
1 answer

rsyslog with heroku

I'm trying to capture logs from Heroku. I have setup as suggested http://devcenter.heroku.com/articles/logging#syslog_drains. I'm completely new to the rsyslog, please bear with me. Where do I see the logs from heroku? Also, how do I…
Devi
  • 131
  • 3
3
votes
3 answers

Why is my site intermittently slow to load, seemingly due to DNS issues?

I'm about to pull out my hair on this one. I have a rails app hosted on Heroku, using Zerigo Free for DNS. The app is available at: smartvark.com (preferred) www.smartvark.com (some users insist on typing www, this redirects to remove the…
3
votes
3 answers

Config Subdomain to point to heroku app

I have to host a subdomain of my domain to heroku app. For example abc.com points to a Hostgator account. I want to configure app.abc.com to heroku app. The domain is registered with godaddy. Can anyone please help me out. Regards Avinasha
Avinasha
2
votes
1 answer

Parse-server/Heroku email account verification not working

I am trying to implement the email verification system on Parse-Server (/Heroku), when a user account is created; so that the user can confirm his/her account creation. Things are working well for those matters: I can create a working account. The…
2
votes
1 answer

Heroku - Distributing monolithic Rails app

We have a pretty sizable monolithic Rails app that has a few functions (in parenthesis is the estimated % out of the total codebase): Marketing site when users are not logged in: homepage, additional landing pages, SEO pages, registration/login…
criticerz
  • 71
  • 2
2
votes
2 answers

Get static IP address for Heroku app

I want to make a domain point to my Heroku app, so I am trying to create an A record that targets myapp.herokuapp.com. The problem is that the domain provider requires an IP address, and I cannot find any IP address for my Heroku app. I guess it…
Jamgreen
  • 121
  • 1
  • 2
2
votes
1 answer

.htaccess remove php file extension not working only on heroku

So I have the below code in my .htaccess file in my local apache XAMPP server in the root directory and it works 100% correctly. However, when I try to deploy to Heroku it does not work. I have tried slightly modified versions of this found on the…
Apickle
  • 21
  • 3
2
votes
0 answers

Heroku SSL redirect to www.example.com with AWS Route 53 and Cloudfront

Current Situation example.com == examplecom and so on because of spam I've a Domain examplecom on GoDaddy and a SSL cert for it. The real application is hosted on Heroku at exampleherokuappcom. I also uploaded the SSL cert on heroku via this…
Kroenig
  • 121
  • 3
2
votes
0 answers

Restricting an API hosted on heroku to only be able to talk to other heroku instances

I have two apps. One of them talks to the world, but needs some data from an internal API we host elsewhere (on heroku). I was thinking about security. Currently, we have token authorization working - but we can do better. Since the scope of the…
John
  • 21
  • 2
1 2
3
13 14