通过python生成nginx模板配置文件

时间:2021-09-06 09:31:16

通过python生成nginx模板配置文件

# cat config.py
#coding=utf-8
nginx_conf = '''
server {{
listen {port};
server_name {servername}; access_log {access_log} main; location / {{
root {home};
index index.html index.htm;
proxy_pass http://127.0.0.1:{proxy_port};
}}
}}
'''.format(port='', servername='cmdb', access_log='/var/log/nginx/cmdb.log',home='/data/python/cmdb/',proxy_port='') handle = open('cmdb.conf','w')
handle.write(nginx_conf)
handle.close()