I had RStudio Server v0.98.1103.
In my nginx config file, I added the following lines so that I can access it from /rstudio
instead of :8787
location /rstudio/ {
proxy_pass http://127.0.0.1:8787/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
I just updated to v0.99.896. Now when I go to the /rstudio
URL and put in my credentials, it just goes back to the same login screen. If I put it wrong credentials then I do see an error, but if the credentials are right then the page simply "refreshes".
If I go to :8787
then I'm able to login.
Does anyone have any ideas why I can't login anymore?
Edit: When I downgrade back to the previous version, I can log in again.