heroku / heroku-buildpack-static

[DEPRECATED] Heroku buildpack for handling static sites and single page web apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How can I inject a boolean HTTPS_ONLY env value into the respective JSON value?

JaffParker opened this issue · comments

I need to have HTTPS enabled for my prod server, but disabled on staging. So I tried this:

"https_only": "${HTTPS_ONLY}",

But it doesn't seem to work, which makes sense, since it becomes "https_only": "false", which is a truthy value. So there seems to be no way to inject a boolean value into this.

Am I missing a solution?

So after some research it seems indeed impossible, since it just injects a string.

So this is more of a feature request now lol. Is it possible to add a parser to boolean fields?

Hi

This buildpack is now deprecated and we are recommending people move the more actively maintained heroku-buildpack-nginx. For migration advice see here.

As such, I'm closing this issue out since we won't be making further changes to this buildpack.