This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-05-31
Channels
- # aws (2)
- # beginners (101)
- # cider (8)
- # clara (8)
- # cljs-dev (3)
- # cljsrn (17)
- # clojars (2)
- # clojure (67)
- # clojure-austin (2)
- # clojure-finland (1)
- # clojure-france (5)
- # clojure-italy (3)
- # clojure-nl (3)
- # clojure-russia (2)
- # clojure-serbia (1)
- # clojure-spec (72)
- # clojure-uk (112)
- # clojurescript (92)
- # core-async (74)
- # core-typed (2)
- # cursive (8)
- # datomic (2)
- # duct (5)
- # emacs (35)
- # events (11)
- # fulcro (32)
- # instaparse (9)
- # jobs (1)
- # luminus (1)
- # lumo (3)
- # off-topic (118)
- # om (2)
- # onyx (10)
- # pedestal (5)
- # re-frame (21)
- # reagent (48)
- # reitit (40)
- # ring (12)
- # shadow-cljs (113)
- # spacemacs (21)
- # tools-deps (47)
I’m interested in setting up a simple HTTP basic auth password to a staging site. Using elasticbeanstalk running nginx. I’m relatively new to aws and my devops knowledge relatively weak - anyone have example of pushing relevant .ebextensions files to set up so that the health check works and the htaccess / password files put in the right place?
The first part of this tutorial worked for me http://sarahcassady.com/2016/09/18/deploy-aws-eb-app-with-auth-and-ssl/
If you are deploying a .zip
archive to beanstalk make sure the .ebextensions
folder is located at the archive's root.
If you are deploying using the eb deploy
shell tool, eb
will build a zip file, so check what is inside to ensure your .ebextensions
is correctly included. Same goes for an AWS Codepipeline deployment.
If you never used eb
I strongly encourage you to do so. I will make your life easier
Hope it helps 😉