Just a suggestion, maybe it would be worthwhile to add redirect option to the nginx conf i.e.
server {
listen 80;
server_name example.org;
return 301 http://www.example.org$request_uri;
}
server {
listen 80;
server_name www.example.org;
...
}