标签: spring nginx cookies
在我的Spring应用程序中,我的cookie路径设置为/auth/refresh_token,因此我只能将其发送到www.domain.com/auth/refresh_token端点。
/auth/refresh_token
www.domain.com/auth/refresh_token
但是Nginx将此路径设置为www.domain.com/api/backend/auth/refresh_token。并且没有发送带有刷新令牌的cookie。
www.domain.com/api/backend/auth/refresh_token
如何发送带有路径的cookie到后端端点?