mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 10:57:35 -02:30
proxy settings default omit
This commit is contained in:
@@ -180,9 +180,9 @@
|
|||||||
links: "{{ awx_web_container_links|list }}"
|
links: "{{ awx_web_container_links|list }}"
|
||||||
hostname: awxweb
|
hostname: awxweb
|
||||||
env:
|
env:
|
||||||
http_proxy: "{{ http_proxy | default('') }}"
|
http_proxy: "{{ http_proxy | default(omit) }}"
|
||||||
https_proxy: "{{ https_proxy | default('') }}"
|
https_proxy: "{{ https_proxy | default(omit) }}"
|
||||||
no_proxy: "{{ no_proxy | default('') }}"
|
no_proxy: "{{ no_proxy | default(omit) }}"
|
||||||
SECRET_KEY: "{{ awx_secret_key }}"
|
SECRET_KEY: "{{ awx_secret_key }}"
|
||||||
DATABASE_NAME: "{{ pg_database }}"
|
DATABASE_NAME: "{{ pg_database }}"
|
||||||
DATABASE_USER: "{{ pg_username }}"
|
DATABASE_USER: "{{ pg_username }}"
|
||||||
@@ -209,9 +209,9 @@
|
|||||||
user: root
|
user: root
|
||||||
hostname: awx
|
hostname: awx
|
||||||
env:
|
env:
|
||||||
http_proxy: "{{ http_proxy | default('') }}"
|
http_proxy: "{{ http_proxy | default(omit) }}"
|
||||||
https_proxy: "{{ https_proxy | default('') }}"
|
https_proxy: "{{ https_proxy | default(omit) }}"
|
||||||
no_proxy: "{{ no_proxy | default('') }}"
|
no_proxy: "{{ no_proxy | default(omit) }}"
|
||||||
SECRET_KEY: "{{ awx_secret_key }}"
|
SECRET_KEY: "{{ awx_secret_key }}"
|
||||||
DATABASE_NAME: "{{ pg_database }}"
|
DATABASE_NAME: "{{ pg_database }}"
|
||||||
DATABASE_USER: "{{ pg_username }}"
|
DATABASE_USER: "{{ pg_username }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user