但是它没有直接在服务器上同步,而是使用bash脚本来提取更改,更新配置和重新加载Nginx配置.
脚本示例:
# Pull changesgit pull# Sync changes excluding .git directoryrsync -qauh ./* "/etc/Nginx" --exclude=".git"# Set proper permissionschmod -R 644 /etc/Nginxfind /etc/Nginx -type d -exec chmod 700 {} \;# If you store SSL certs under `/etc/Nginx/ssl`# Set proper permission for SSL certs chmod -R 600 /etc/Nginx/sslchmod -R 400 /etc/Nginx/ssl/*# Reload Nginx config# but only if configtest is passedNginx -t && service Nginx reload总结
以上是内存溢出为你收集整理的linux – Nginx配置版本控制策略全部内容,希望文章能够帮你解决linux – Nginx配置版本控制策略所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)