summaryrefslogtreecommitdiff
path: root/wiki/12factor/3-config.md
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2020-01-28 20:49:17 -0500
committerOwen Jacobson <owen@grimoire.ca>2020-01-28 23:23:18 -0500
commit0d6f58c54a7af6c8b4e6cd98663eb36ec4e3accc (patch)
treea2af4dc93f09a920b0ca375c1adde6d8f64eb6be /wiki/12factor/3-config.md
parentacf6f5d3bfa748e2f8810ab0fe807f82efcf3eb6 (diff)
Editorial pass & migration to mkdocs.
There's a lot in grimoire.ca that I either no longer stand behind or feel pretty weird about having out there.
Diffstat (limited to 'wiki/12factor/3-config.md')
-rw-r--r--wiki/12factor/3-config.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/wiki/12factor/3-config.md b/wiki/12factor/3-config.md
deleted file mode 100644
index 5d6c6c6..0000000
--- a/wiki/12factor/3-config.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Factor 3: Config
-
-[This section](http://www.12factor.net/config) advises using environment
-variables for everything.
-
-> [Owen J](https://twitter.com/derspiny): I think I disagree with
-> 12factor's conclusions on config even though I agree with the premises
-> and rationale in general
->
-> [Owen J](https://twitter.com/derspiny): environment variables
-> are neither exceptionally portable, exceptionally standard, nor
-> exceptionally easy to manage
->
-> [Owen J](https://twitter.com/derspiny): and therefore should not be
-> the exceptional configuration mechanism :)
->
-> [Kit L](https://twitter.com/wlonk): that's exactly the critique i have
-
-Frustratingly, the config section doesn't provide any guidance on sensible
-ways to _manage_ environment variables. In any real-world deployment, they're
-going to have to be stored somewhere; where's appropriate? `.bash_profile`?
-`httpd.con` as `SetEnv` directives? Per-release `rc` files? `/etc/init.d`?