我是一個寫文件應按照環境改變內部虛擬主機和DNS模板文件主機name.Below是問題,我試圖解決:如何使用嵌套,如果裏面的Jinja2過濾
server {
listen 80;
charset utf-8;
server_name "{{ 'a.com if ansible_hostname='p.com' 'b.com' if ansible_hostname= 'd.com' 'z.com' if ansible hostname is 'k.com' else 'default.com' }}";
rewrite ^(.*) https://$server_name$1 permanent;
}
我怎樣才能做到這一點模板,即:
{{ 'a.com' if ansible_hostname='p.com' 'b.com' if ansible_hostname= 'd.com' 'z.com' if ansible hostname is 'k.com' else 'default.com' }}" `
我是新來神社2,而且不知道如何做到這一點。 單if else語句正在工作,但我如何使用多個if else語句來定義文件中變量的值。