Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 MY_SCRIPT 的脚本,我需要将其上传到不同的服务器(A、B 和 C)以解决性能问题。此脚本对所有服务器都相同。
减少维护的最佳方法是什么?
我在想:
<?php eval(file_get_contents("http://user:passwd@www.mysecurewebsite.com/myscript.txt")); ?>
你怎么看待这件事 ?
使用部署工具将此文件自动部署到多个服务器。像Ansible、Puppet、Chef、Capistrano之类的东西。