PHP Code to Node.js Code Conversion
-
I have the following piece of code:
session_set_cookie_params(0, '/', '.site.net'); session_start(); if(!isset($_SESSION["auth"])) { $_SESSION["auth"] = true; header("Location: https://secure.site.net/auth?return_url=https://forums.site.net$_SERVER[REQUEST_URI]"); }
How can I convert this to Node.js and where should I place it so that all requests to my NodeBB forum pass through this? I can't figure out how to do this.
-
Assuming that you use it as a reverse proxy, I think you can do something similar with NGINX by mixing these guides:
https://stackoverflow.com/questions/3542149/check-the-existence-of-a-session-nginx
https://stackoverflow.com/questions/18970620/nginx-reject-request-if-header-is-not-present-or-wrong
https://stackoverflow.com/questions/11461497/nginx-moving-site-to-new-domain
Copyright © 2024 NodeBB | Contributors