Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在服务器上安装了 mailcatcher,我想用密码保护它。目前,我正在直接访问它,并希望拥有 auth_basic 'RETRICTED ACCESS';
知道我在哪里可以启用它吗?
在 MailCatcher 中似乎不可能。您可能必须考虑在顶部使用解决方案来保护您的 MailCatcher 实例。
我认为最好的办法可能是在前面运行 Nginx 来代理它,或者可能是其他一些轻量级的 Web 服务器。
对于 Nginx,你可以有这样简单的东西:
location /email { proxy_pass http://127.0.0.1:8888; # path to your mailcatcher }