avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 1 | # Host for the SMTP server where you're going to receive email notifications |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 2 | HICHIPBRIDGE_SMTP_HOST=smtp-server.example.com |
avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 3 | # MQTT broker endpoint |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 4 | HICHIPBRIDGE_MQTT_BROKER=mqtt://mqtt-broker.example.com:1883 |
avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 5 | # MQTT client id |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 6 | HICHIPBRIDGE_MQTT_CLIENTID=hichipbridge |
avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 7 | # MQTT username |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 8 | HICHIPBRIDGE_MQTT_USERNAME=user |
avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 9 | # MQTT password |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 10 | HICHIPBRIDGE_MQTT_PASSWORD=password |
avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 11 | # Prefix for the MQTT topics where events will be saved |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 12 | HICHIPBRIDGE_MQTT_TOPIC=hichipbridge |
avm99963 | 88e622d | 2021-01-22 18:57:58 +0100 | [diff] [blame] | 13 | # Token for the email notifications |
avm99963 | 308de8e | 2021-01-25 13:36:10 +0100 | [diff] [blame] | 14 | HICHIPBRIDGE_EMAIL_TOKEN=superconfidentialtoken;) |
avm99963 | 8355e00 | 2021-01-26 23:05:01 +0100 | [diff] [blame^] | 15 | # Whether images should be saved in a S3 storage bucket (true/false) |
| 16 | HICHIPBRIDGE_S3_ENABLED=false |
| 17 | # The S3 storage endpoint |
| 18 | HICHIPBRIDGE_S3_ENDPOINT=s3.example.com |
| 19 | # The S3 access key ID |
| 20 | HICHIPBRIDGE_S3_ACCESS_KEY=username |
| 21 | # The S3 secret access key |
| 22 | HICHIPBRIDGE_S3_SECRET_KEY=password |
| 23 | # Whether S3 uses SSL (true/false) |
| 24 | HICHIPBRIDGE_S3_USE_SSL=true |
| 25 | # The S3 bucket name |
| 26 | HICHIPBRIDGE_S3_BUCKET=hichipbridge |