|
|
|
|
|
by viraptor
3999 days ago
|
|
Rsync is good for simple things. But it will fail with more complicated apps: - how do you know which version you're running right now? - how do you deploy to two environments where different deps are needed? - how do you tell when your included dependencies need security patches? |
|
#1 is git (dump and log the git head on a deploy) #2 don't do that - keep a single consistent environment #3 use the system openssl - monitor other software components for security updates -- you need to do this anyway in any of these systems.