-
-
Notifications
You must be signed in to change notification settings - Fork 987
【Feature】I wish I could define the name by req #920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hello, and thank you for your suggestion. The goal of the configuration for this middleware is to be as static as possible. Can you elaborate on the specific use-case you are trying to accomplish that would make use of this? |
@dougwilson hi, I have a use-case for dynamic configuration. We have a back-end staging environment running, currently serving as both a staging endpoint for staging instance of the webapp, which fits I'd like to configure that if the request origin is localhost, then use Is there a workaround for such use-case? I'm not sure about what are the consequences for the staging environment if I set Thanks! |
I'm looking for something similar; I have a device with embedded webserver and by default is available over http and https. If the user accesses over https, we could use One solution would be if I could have a different cookie name when the request is https, and also dynamically set I'm wondering if I could wrap the session instance - actually two session instances - in my own middleware function that chooses one or the other based on |
Bit old issue, but few ideas for both. For @wodCZ's case. One idea is to se For @thom-nic's case. I would consider creating two express servers, one for each port (http and another for https). This way you can fully manage what middlewares are in each server. If you want to expose all the same routes via both servers, then it should be easy with a single router instance. Al though, this setup also would allow you to tailor which routes are bound to which server. |
I created a wrapper middleware that chooses the correct cookie name based on context and effectively has two separate session instances underneath. |
now
expect
The text was updated successfully, but these errors were encountered: