Giter Site home page Giter Site logo

Comments (7)

geiszla avatar geiszla commented on April 27, 2024 1

Okay, I just figured it out: if I use different names for the cookies depending on the environment, it will work on both HTTPS and HTTP.

from cookie-session.

dougwilson avatar dougwilson commented on April 27, 2024

Very strange. I'm also not 100% sure what is going on there. Is it possible to provide a simplified app I can run to reproduce the issue (include instructions on how to run and reproduce too)?

from cookie-session.

geiszla avatar geiszla commented on April 27, 2024

Thanks for the quick response! I have a project on github with this issue. npm run build builds with production, and npm run dev builds it for dev. Then you can run npm start either with or without --production to start it for production/development.

If it's too complex project to debug, I can make a simple PoC, but I hope it's not too bad.

from cookie-session.

dougwilson avatar dougwilson commented on April 27, 2024

Awesome thanks! I will try to run it when I get to a computer. After I run it, what are the next steps I would need to perform to see the issue?

from cookie-session.

geiszla avatar geiszla commented on April 27, 2024

The app is basically just a boilerplate/starter, so it only consists of a login page and a home page. If you go to either http://localhost:8080 (for development) or https://localhost/ (for production), the login screen should appear and if the cookies are working you can log in with any username and testpass as password.

The problem is, when I log in to the HTTPS version, then build it for dev and start it without --production and load the login page, no cookies are loaded (webpack replaces the process.env.NODE_ENV with the environment string when building, so you need to rebuild it when changing between dev/prod).

from cookie-session.

dougwilson avatar dougwilson commented on April 27, 2024

Yes, I can reproduce. There is no solution from this module. It is just how web browsers work: cookies are per domain and do not care about the port number. Since both are localhost, the two sites share the same cookie space. Since the cookie was set with the secure flag, the browser will not sent it over http and won't allow it to be replaced over http. You have to clear your cookies between the two.

from cookie-session.

geiszla avatar geiszla commented on April 27, 2024

Would it be possible to use different session cookies when using HTTP, so that it doesn't try to get the secured ones?

from cookie-session.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.