批量修改nginx配置文件
生活随笔
收集整理的這篇文章主要介紹了
批量修改nginx配置文件
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
2019獨角獸企業(yè)重金招聘Python工程師標準>>>
#coding:utf-8 import re import glob import osdef cross(strx):xCross = '''location / {index index.php index.html;if ($http_origin ~ .*.abc.net.cn ) { add_header Access-Control-Allow-Origin $http_origin; add_header Access-Control-Allow-Credentials true; add_header Access-Control-Allow-Methods 'GET,POST'; } }'''r = '(location / {.+?}\s*)\w'r = re.compile(r, re.DOTALL)m = r.search(strx)if m:oldX = m.group(1) strx = strx.replace(oldX, xCross)return strxdef openAndSave(filePath):with open(filePath, 'r') as f:strx = f.read()strx = cross(strx)with open(filePath, 'wb') as f:f.write(strx)if __name__ == '__main__':path='D://dev'for filePath in glob.glob( os.path.join(path, u'*.conf') ): print filePath openAndSave(filePath)print '============================================'轉載于:https://my.oschina.net/u/2351685/blog/842916
總結
以上是生活随笔為你收集整理的批量修改nginx配置文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Mysql表分区
- 下一篇: [01分数规划]【学习笔记】