Temporary, one-off URLs

People,

I have a public Jekyll site where I would like to have some pages / directories more protected - I am thinking:

  • Trying to access a particular URL causes a pop-up box to request the person’s email address

  • The entered email address is checked against a list of authorised emails

  • For an authorised email address request, a one-off, encrypted URL is generated and emailed to the person

How to do this? Could the encrypted URLs be symlinks to the actual URL where the symlinks would get deleted after 24 hours or something?

Thanks,

Phil.

You wouldn’t be able to do that with Jekyll, which is a static site generator. This means that once generated, your site will stay the same until next build.

Doing what you described would require server-side code to be run for the login process and for sending emails. I don’t know how experienced you are with web technologies, but if you don’t know how to use server-side code, I recommend you look at a PHP tutorial, which should be a good starting point.

2 Likes

A fully static option might be to encrypt the secret portions of a page, and use Javascript’s Web Crypto API to decrypt based on a password provided by the user. Web Crypto info:

2 Likes

Chuck,

Ah interesting! I will have a look at that . .

Thanks!

Phil.