matrix-dimension #43
No reviewers
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
Monitoring
question
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: kunsi/bundlewrap#43
Loading…
Reference in a new issue
No description provided.
Delete branch "matrix-dimension"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
fixes #13
@ -0,0 +3,4 @@
After=network.target
[Service]
User=matrix-support
Please use a user dedicated to this bundle, naming them accordingly
Resolved in
b87d3cc975
@ -0,0 +1,98 @@
# The web settings for the service (API and UI).
# It is best to have this run on localhost and use a reverse proxy to access Dimension.
web:
port: 8184
Please change port into the 200xx range and document accordingly in PORT_MAP.md
Resolved in
2161698a97
@ -0,0 +12,4 @@
# The URL that Dimension, go-neb, and other services provisioned by Dimension should
# use to access the homeserver with.
clientServerUrl: "${config['homserver']['clientServeUrl']}"
Typo?
clientServeUrl
vs.clientServerUrl
Resolved in
8702e131dc
anda65301ee89
.@ -0,0 +27,4 @@
# for tracking custom sticker pack updates. This should be a user configured on the homeserver
# and be dedicated to Dimension (create a user named "dimension" on your homeserver). For
# information on how to acquire an access token, visit https://t2bot.io/docs/access_tokens
accessToken: "${config['homserver']['accessToken']}"
Typo?
homserver
vs.homeserver
Resolved in
8702e131dc
anda65301ee89
.@ -0,0 +89,4 @@
# Settings for controlling how logging works
logging:
file: "${config['data_dir']}/logs/dimension.log"
I think we can omit that, since systemd takes care of the logging part.
Should the console level be verbose instead of into then?
I don't think that's needed. We can increase it later, if needed.
Resolved in
3fd20de161
.@ -0,0 +10,4 @@
git_deploy = {
node.metadata['matrix-dimension']['install_dir']: {
'rev': node.metadata.get('matrix-dimension', {}).get('version', 'master'), # doesn't have releases yet
`node.metadata.get('matrix-dimension/version', 'master')
@ -0,0 +1,77 @@
defaults = {
'backups': {
'paths': {
'/opt/matrix-dimension',
Do we really need to backup this?
npm writes all kinds of install info to this location, I guess so.
If it's only information we can restore using a
bw apply
, there should be no need to backup this. But if it's more than that, i'm okay with backing this up.@ -0,0 +40,4 @@
return {
'nginx': {
'vhosts': {
metadata.get('matrix-dimension/url'): {
Please use a generic vhost name (like the bundle name), then set
domain
key inside. Remember to adjust.provides()
accordingly.Resolved in
a65301ee89
@ -0,0 +69,4 @@
'check_interval': '60m',
},
#'MATRIX-DIMENSION PROCESS': {
# 'command_on_monitored_host': '/usr/lib/nagios/plugins/check_procs -a mautrix-telegram -c 1:',
Please fix and enable.
Resolved in 'd74618f9a9'
76d41a0e47
tod01a7f34a4
Pull request closed