Mounting NFS (hard mount) via WAN connection is not advised.
different between soft and hard mount
a) Hard mounts
Advantages: If the connection is lost and it is a minor problem, and you are ok with having all your NFS clients have frozen applications, and possibly have their entire systems frozen and useless until the NFS server comes back online, you may not lose any data when the NFS share becomes available again.
Disadvantages: If an application freezes and you can’t bring up the NFS server, your only option appears to be to kill that application, even if it could have easily survived write errors. Also, a simple NFS share where you dump files once in a while, and that is completely unnecessary for the system to function, can freeze the entire system indefinitely if the server loses connection to the client.
b) Soft mounts
Advantages: They work as expected (for the most part) – if the server fails, the application gets an I/O error, and keeps going.
Disadvantage: According to the nfs man page, and every other source on the internet, this leads to silent data corruption because applications get told prematurely that a write was successful when in fact the data is still in cache, unable to be written to the NFS server that we just lost connection to.