Find files:
find . -type f -name '*~'
To delete the files:
find . -type f -name '*~' -exec rm -f '{}' \;
To configure NGINX as a secure load balancer for WebSocket ( wss:// ) connections,use an HTTP upgrade map, increase connection timeouts, a...