-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Page Level Encryption #465
Comments
LGTM, but we don't plan to add built-in support for it. it seems to be something that should be done by a plugin. |
If tried using Staticrypt to encrypt one of my folders. It works great. But if I access the page through the search box it doesn't require a password. I guess it's because the page is loaded from javascript. How can this be handled? |
@ulivz could you please advise whether this is now supported (even with a plugin) ? This could be a great feature to be able to lock a WIP vuepress... |
Wanted to seed up a recipe:
vuepress build
, runfind <<dist>> -type f -name "*.html" -exec staticrypt {} mypassword \;
on your dist folderThis creates stand-alone encrypted pages that require password on each refresh. This works well to lock down a Github Pages deployment.
This technique seems to be compatible with all of the various deployment environments supported and could potentially be an option on the config API down the road (relative to deployment types that support it).
Enjoy!
The text was updated successfully, but these errors were encountered: