It would be very helpful if NGINX can have a configuration option to add flags to some cookies. It should look like this: ``` proxy_cookie_set_flags JSESSIONID Secure HttpOnly; ``` This is very useful. For example, when we use NGINX as HTTP terminal, the backend shall not set the Secure flag, or it won’t work in development environment. (Development environment typically don’t have TLSby Franklin Yu - Ideas and Feature Requests
1. Wrong forum. You should post it to “How to…”: https://forum.nginx.org/list.php?11 2. For this question, what you need is `proxy_pass` directive. See https://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_passby Franklin Yu - Ideas and Feature Requests