<div dir="auto">Hi All,<div dir="auto"><br></div><div dir="auto">To fix Cross site scripting (XSS), I am trying to add below config but I am not seeing cookie in the response headers. Cookie in the browser still showing as not secure and not http.</div><div dir="auto"><br></div><div dir="auto">We are using Nginx as reverse proxy to Jetty and running a java application on it.</div><div dir="auto"><br></div><div dir="auto">Below is the nginx config:</div><div dir="auto"><br></div><div dir="auto"><div dir="auto">location /abc/ {</div><div dir="auto">         proxy_pass <a href="http://127.0.0.1:8080">http://127.0.0.1:8080</a>;</div><div dir="auto">          proxy_set_header X-Real-IP $remote_addr;</div><div dir="auto">         proxy_cookie_path / "/; secure; HttpOnly; SameSite=strict";</div><div dir="auto">  </div><div dir="auto">    }</div><div dir="auto"><br></div><div dir="auto"><div dir="auto"># nginx -V</div><div dir="auto">nginx version: nginx/1.10.3 (Ubuntu)</div><div dir="auto">built with OpenSSL 1.0.2g  1 Mar 2016</div><div dir="auto">TLS SNI support enabled</div><div dir="auto">configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_v2_module --with-http_sub_module --with-http_xslt_module --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-threads</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto">Can you let me know, if I am missing any.</div></div></div></div>