-
Is it possible somehow to hide the mkdocs material insiders install with github pages behind a login system of some sort so it is a private wiki/docs. As the purpose I am trying to use it for within the company will have sensitive data on it and we need to have it secure. I have looked into mkdocs encrypt plugin which works sort of but the user needs to add a password for each page etc, I am looking for more a solution if possible where you login with a given name/password (doesnt need multi-account, one account is fine) and that will give you read access to the website. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Of course! You can host the static site that is generated by MkDocs and Material for MkDocs with any service or technology that allows for web hosting. For example, you could use nginx and add basic authentication to protect your site, or use IP whitelisting, OAuth (with JWT), ... basically any authentication method. It's beyond the scope of Material for MkDocs, though. I would recommend to talk to your ops team. Related: #3854 |
Beta Was this translation helpful? Give feedback.
Of course! You can host the static site that is generated by MkDocs and Material for MkDocs with any service or technology that allows for web hosting. For example, you could use nginx and add basic authentication to protect your site, or use IP whitelisting, OAuth (with JWT), ... basically any authentication method. It's beyond the scope of Material for MkDocs, though.
I would recommend to talk to your ops team. Related: #3854