Find files that ends with tilde

Find files:

find . -type f -name '*~'

To delete the files:

find . -type f -name '*~' -exec rm -f '{}' \;

NGINX as a load balancer for WebSocket

  To configure NGINX as a secure load balancer for WebSocket ( wss:// ) connections,use an HTTP upgrade map, increase connection timeouts, a...

Mais vistos