我可以在PHP中“密码保护”我的整个流星应用程序,例如“htaccess”吗?
例如:我不希望公众有权访问我的网站,但客户希望看到它。
答案 0 :(得分:8)
没有意识到这就是答案。首先谷歌击中。 https://github.com/Jabbslad/basic-auth
修改强>
其实非常简单。
添加包。
meteor add jabbslad:basic-auth
在服务器端代码中添加此代码
var basicAuth = new HttpBasicAuth("guest", "password");
basicAuth.protect();
您可以在存储库readme.md
中看到更多选项