matrix-dimension #43

Closed
sophie wants to merge 15 commits from matrix-dimension into main
Showing only changes of commit a586454a78 - Show all commits

View file

@ -1,4 +1,10 @@
defaults = {
'backups': {
'paths': {
'/opt/matrix-dimension',
kunsi marked this conversation as resolved

Do we really need to backup this?

Do we really need to backup this?

npm writes all kinds of install info to this location, I guess so.

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.

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.
'/var/opt/matrix-dimension',
},
},
'matrix-dimension': {
'install_dir': '/opt/matrix-dimension',
'data_dir': '/var/opt/matrix-dimension',
@ -38,7 +44,7 @@ def nginx_config(metadata):
'webroot': '/var/www/{}/webapp/'.format(metadata.get('matrix-dimension/url')),
'do_not_set_content_security_headers': True,
'max_body_size': '50M',
'proxy': {
'locations': {
'/': {
'target': 'http://127.0.0.1:8184',
},