jbutterf Any one else had any user reports of getting messages saying ERR_SPDY_INADEQUATE_TRANSPORT_SECURITY in Chrome? I haven't been able to reproduce and it seems to be a very limited number of users. It's a django app so I'm not sure if the app or the static server is the problem. My little bit of internet research suggests its related to the SSL certificate, but I'm just using the automatic lets encrypt certs.
sean jbutterf if you're using our uwsgi setup then you might need to add the following to your uwsgi.ini: add-header = 'Strict-Transport-Security "max-age=31536000"' You'll need to restart your app after making that change.
jbutterf The format that worked for me is add-header = Strict-Transport-Security: max-age=31536000 But this did solve the problem. Thanks.