Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

27 rivejä
1.1 KiB

  1. port: 8080
  2. bindAddress: "0.0.0.0"
  3. # Information about the corresponding app
  4. appName: "{{ matrix_fluffygate_app_name }}"
  5. appWebsite: "{{ matrix_fluffygate_app_website }}"
  6. # (Optional) Display logs for debugging
  7. debugLogs: {{ matrix_fluffygate_debug_logs | to_json }}
  8. # The default notification title and body. {count} will be replaced by the unread
  9. # count of the push notification. Won't be set by default for clearing notifications.
  10. notificationTitle: "{{ matrix_fluffygate_notification_title }}"
  11. notificationBody: "{{ matrix_fluffygate_notification_body }}"
  12. # Add json keys to send to fcm for android and apns configurations
  13. androidNotificationOptions: {{ matrix_fluffygate_android_notification_options | to_json }}
  14. apnsNotificationOptions: {{ matrix_fluffygate_apns_notification_options | to_json }}
  15. # You firebase project ID and the path to the key file for your service account.
  16. {% if matrix_fluffygate_firebase_project %}
  17. projectId: "{{ matrix_fluffygate_firebase_project }}"
  18. {% endif %}
  19. {% if matrix_fluffygate_firebase_key %}
  20. fcmKeyFilePath: "/data/firebase-key.json"
  21. {% endif %}