Browse Source

Format of proxying

Bob Mottram 8 years ago
parent
commit
418a8bb9d6
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      src/freedombone-app-matrix

+ 8
- 8
src/freedombone-app-matrix View File

@@ -48,15 +48,15 @@ matrix_variables=(ONION_ONLY
48 48
                   DEFAULT_DOMAIN_NAME)
49 49
 
50 50
 function matrix_nginx {
51
-    matrix_proxy_str=" \
52
-    location /matrix { \
53
-        proxy_pass https://localhost:${MATRIX_PORT}; \
54
-        proxy_buffering on; \
51
+    matrix_proxy_str="
52
+    location /matrix {
53
+        proxy_pass https://localhost:${MATRIX_PORT};
54
+        proxy_buffering on;
55 55
     }"
56
-    turn_proxy_str=" \
57
-    location /turn { \
58
-        proxy_pass https://localhost:${TURN_PORT}; \
59
-        proxy_buffering on; \
56
+    turn_proxy_str="
57
+    location /turn {
58
+        proxy_pass https://localhost:${TURN_PORT};
59
+        proxy_buffering on;
60 60
     }"
61 61
 
62 62
     if [ ! -f /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME} ]; then