Browse Source

underscore

Bob Mottram 8 years ago
parent
commit
347a172822
1 changed files with 10 additions and 9 deletions
  1. 10
    9
      src/freedombone-app-matrix

+ 10
- 9
src/freedombone-app-matrix View File

52
 
52
 
53
 function matrix_nginx {
53
 function matrix_nginx {
54
     matrix_identityserver_proxy_str=' \
54
     matrix_identityserver_proxy_str=' \
55
-    location /matrixid { \
55
+    location /_matrixid { \
56
         proxy_pass http://localhost:8081; \
56
         proxy_pass http://localhost:8081; \
57
         proxy_set_header X-Forwarded-For $remote_addr; \
57
         proxy_set_header X-Forwarded-For $remote_addr; \
58
     }'
58
     }'
59
     matrix_proxy_str=' \
59
     matrix_proxy_str=' \
60
-    location /matrix { \
60
+    location /_matrix { \
61
         proxy_pass https://localhost:8448; \
61
         proxy_pass https://localhost:8448; \
62
         proxy_set_header X-Forwarded-For $remote_addr; \
62
         proxy_set_header X-Forwarded-For $remote_addr; \
63
     }'
63
     }'
69
 
69
 
70
     if [[ $ONION_ONLY != 'no' ]]; then
70
     if [[ $ONION_ONLY != 'no' ]]; then
71
         matrix_proxy_str=' \
71
         matrix_proxy_str=' \
72
-    location /matrix { \
72
+    location /_matrix { \
73
         proxy_pass http://localhost:8448; \
73
         proxy_pass http://localhost:8448; \
74
         proxy_set_header X-Forwarded-For $remote_addr; \
74
         proxy_set_header X-Forwarded-For $remote_addr; \
75
     }'
75
     }'
235
     sed -i "s|log_file:.*|log_file: \"/dev/null\"|g" "${filepath}"
235
     sed -i "s|log_file:.*|log_file: \"/dev/null\"|g" "${filepath}"
236
     sed -i '0,/bind_address:.*/s//bind_address: 127.0.0.1/' "${filepath}"
236
     sed -i '0,/bind_address:.*/s//bind_address: 127.0.0.1/' "${filepath}"
237
     sed -i '0,/x_forwarded:.*/s//x_forwarded: true/' "${filepath}"
237
     sed -i '0,/x_forwarded:.*/s//x_forwarded: true/' "${filepath}"
238
-    sed -i "s|server_name:.*|server_name: \"${DEFAULT_DOMAIN_NAME}/matrix\"|g" "${filepath}"
239
-    sed -i "/trusted_third_party_id_servers:/a     - ${DEFAULT_DOMAIN_NAME}/matrixid" "${filepath}"
238
+    sed -i "s|server_name:.*|server_name: \"${DEFAULT_DOMAIN_NAME}/_matrix\"|g" "${filepath}"
239
+    sed -i "/trusted_third_party_id_servers:/a     - ${DEFAULT_DOMAIN_NAME}/_matrixid" "${filepath}"
240
+    sed -i "s|- ${DEFAULT_DOMAIN_NAME}/_matrixid|    - ${DEFAULT_DOMAIN_NAME}/_matrixid|g" "${filepath}"
240
 }
241
 }
241
 
242
 
242
 function matrix_configure_identityserver {
243
 function matrix_configure_identityserver {
247
     sed -i "s|Sydent Validation|Freedombone Matrix Account Validation|g" ${filepath}
248
     sed -i "s|Sydent Validation|Freedombone Matrix Account Validation|g" ${filepath}
248
     sed -i "s|pidfile.path.*|pidfile.path = /etc/sydent/sydent.pid|g" ${filepath}
249
     sed -i "s|pidfile.path.*|pidfile.path = /etc/sydent/sydent.pid|g" ${filepath}
249
     sed -i "s|log.path.*|log.path = /dev/null|g" ${filepath}
250
     sed -i "s|log.path.*|log.path = /dev/null|g" ${filepath}
250
-    sed -i "s|server.name.*|server.name = ${DEFAULT_DOMAIN_NAME}/matrixid|g" ${filepath}
251
+    sed -i "s|server.name.*|server.name = ${DEFAULT_DOMAIN_NAME}/_matrixid|g" ${filepath}
251
 }
252
 }
252
 
253
 
253
 function matrix_diff {
254
 function matrix_diff {
445
     delgroup matrix
446
     delgroup matrix
446
     remove_onion_service matrix ${MATRIX_PORT}
447
     remove_onion_service matrix ${MATRIX_PORT}
447
 
448
 
448
-    sed -i "/location \/matrix {/,/}/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
449
-    sed -i "/location \/matrixid {/,/}/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
450
-    sed -i "/location \/turn {/,/}/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
449
+    sed -i "/location \/_matrix {/,/}/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
450
+    sed -i "/location \/_matrixid {/,/}/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
451
+    sed -i "/location \/_turn {/,/}/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
451
     systemctl restart nginx
452
     systemctl restart nginx
452
 
453
 
453
     remove_completion_param install_matrix
454
     remove_completion_param install_matrix