I was having a devil of a time disabling TLSv1 and TLSv1.1 on my nginx server despite following one of the many guides you'll find with a quick google search.
Specifically, the recommendation was done by changing this line in your nginx configuration file:
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
To something like this:
ssl_protocols TLSv1.2;
Despite changing the config to support only TLSv1.2 my nginx server appears to keep TLSv1 and TLSv1.1 enabled as evidenced by doing the Qualsys SSL Labs Test thereby limiting our overall score to a "B". Seemingly such an easy fix - super frustrating.