32 lines
787 B
YAML
32 lines
787 B
YAML
---
|
|
# timezone
|
|
timezone: 'Europe/Rome'
|
|
default_locale: "en_US.UTF-8"
|
|
locales_list:
|
|
- { name: '{{ default_locale }}' }
|
|
- { name: 'en_US' }
|
|
- { name: 'it_IT.UTF-8' }
|
|
- { name: 'it_IT' }
|
|
|
|
enable_env_proxy: False
|
|
env_proxy_http_host: 'localhost'
|
|
env_proxy_http_port: '3128'
|
|
env_proxy_http_protocol: 'http'
|
|
env_proxy_https_protocol: '{{ env_proxy_http_protocol }}'
|
|
env_proxy_http_url: '{{ env_proxy_http_protocol }}://{{ env_proxy_http_host }}:{{ env_proxy_http_port }}'
|
|
env_proxy_https_url: '{{ env_proxy_http_url }}'
|
|
env_proxy_protocols:
|
|
- 'http_proxy'
|
|
- 'https_proxy'
|
|
- 'ftp_proxy'
|
|
- 'HTTP_PROXY'
|
|
- 'HTTPS_PROXY'
|
|
- 'FTP_PROXY'
|
|
env_proxy_use_authentication: False
|
|
env_proxy_username: ''
|
|
env_proxy_password: ''
|
|
no_proxy_targets:
|
|
- '::1'
|
|
- '127.0.0.1'
|
|
- 'localhost'
|