Заполнители в переменной среды UAA_CONFIG_YAML
Я пытаюсь установить настройки SMTP в разделе UAA_CONFIG_YAML манифеста.
smtp:
host: ${vcap.services.smtpdev.credentials.hostname:localhost}
port: 2525
user: ${vcap.services.smtpdev.credentials.username:user}
password: ${vcap.services.smtpdev.credentials.password:password}
Это не работает, но по умолчанию выбирается localhost. Если я предоставлю неверный заполнитель, он выдаст ошибку.
1 ответ
The way I have done it, I have set the UAA_CONFIG_PATH environment variable which points to the location of the yaml file.
The settings are provided as follows:
smtp:
host: smtp.gmail.com
port: <port_number>
auth: true
starttls.enable: false
user: <username>
password: <password>
These values are getting picked up by uaa.
Please let me know if it was helpful.