使用 Mochiweb 处理用户会话
我正在运行一个基于 PHP 的应用程序。 用户登录并执行一些操作。 我设置了一个反向代理来单独转发某些请求,由 mochiweb 服务器处理 - 例如,任何带有 mysite.com/mochiweb 的请求 URL 都会路由到 mochiweb 服务器。
现在,我的问题是如何使用 PHP 发出的会话信息来验证此请求? 我希望只有通过 PHP 前端登录的用户才能访问 mochiweb 网络服务器的服务。 任何直接的杂散请求都不应得到满足。
I have a PHP based application running. The user logins, and does some actions. I have a reverse proxy set up to forward certain requests alone to be handled by the mochiweb server - e.g. any request URL with mysite.com/mochiweb gets routed to the mochiweb server.
Now, my question is how do I authenticate this request using the session information handed out by PHP? I want only the users who have logged in via the PHP front end to be able to access the services of the mochiweb webserver. Any stray requests directly should not be served.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以让 erlang 服务器向 php 服务器发送带有所述会话 cookie 的 http 请求,并让 php 服务器返回会话是否有效。
例如,这是我通过 recaptcha 验证网站的方式
you could have the erlang server send an http request with said session cookie to the php server and have the php server return if session is valid or not.
for example here is how i verified site via recaptcha