Ngnix staic Assets

server {
        server_name  example.com;

           location / {
            proxy_pass http:// 192.168.1.100;
          }

           location ~* \.(css|js|jp?g|JPG|png)  {
               root /var/www/assets          
              try_files $uri $uri/;
          }

 }