How create Realy fixed joint

Hello,
We are making a game, where some construction is built from different blocks. These blocks are bonded to each other with boards/staples. The hardness of these boards/staples in the attachment point is ultimate: that means if you fix one object in the space so that gravity couldn’t affect it, place the second object close to the first and bond this two objects with this board in some cases this board can be broken in the point where it is attached to one of the objects (because gravity affects the second object and it has weight). The second object in this case should fall under gravity.
Integrated Unity physics doesn’t allow to make stiff joints between objects, objects act as though they were joined with some spring (even if we use FixedJoint).

Does anybody know how to solve this problem? Maybe there are some settings for Joints, or some custom solution can be used.
As a custom solution I mean some technique which will allow to make really stiff joints between objects (- YouTube) and somehow calculate a force which affects the objects so that we could break joints if needed.

If you want something similar to FixedJoint, that is a truly fixed joint, try using a Configurable Joint, and set all XYZMotion and Angular Motion to “Fixed” and set “Projection Mode” to “Position and Rotation”