I do have a static HTML site that I want to make accessible via user/password authentification. I have at least 500 private users. Which options do I have apart from Netlify Pro's Identification (99$+/month), using Lamba on S3 (0) or fiddling with NGINX/Apache Basic HTTP Auth?<p>Setting up a full Laravel seems to be overkill as well. Hosted solution with custom HTML would be best, but any framework (PHP, Python, JS) would work too.<p>(0) (https://hackernoon.com/serverless-password-protecting-a-static-website-in-an-aws-s3-bucket-bfaaa01b8666)
Perhaps consider moving the site to Firebase and put Firebase Authentication in front of it (believe the author piece is free based on <a href="https://stackoverflow.com/questions/44161195/which-pricing-tier-mentions-firebase-authentication" rel="nofollow">https://stackoverflow.com/questions/44161195/which-pricing-t...</a>) ? Firebase services also have a general free tier (although may not be suitable to your use case if course), and many paid pricing levels.
For $15 p/mth, you have a couple of options with Aerobatic [0].<p>Option 1 is using the Auth0 plugin [1, 2]
Option 2 is using the Password Protect plugin [3]<p>Disclaimer: I work for Aerobatic.<p>[0] <a href="https://www.aerobatic.com/" rel="nofollow">https://www.aerobatic.com/</a><p>[1] <a href="https://www.aerobatic.com/blog/announcing-auth0-plugin/" rel="nofollow">https://www.aerobatic.com/blog/announcing-auth0-plugin/</a><p>[2] <a href="https://www.aerobatic.com/docs/plugins/auth0/" rel="nofollow">https://www.aerobatic.com/docs/plugins/auth0/</a><p>[3] <a href="https://www.aerobatic.com/docs/plugins/password-protect/" rel="nofollow">https://www.aerobatic.com/docs/plugins/password-protect/</a>
Looks like the only way to do this is to proxy all request to the static server through an authentication server, and you could write the authentication server in any language.<p>[authentication server] -> [static server]<p>Unfortunately, this kind of defeats the purpose of having a static server.