|
|
|
|
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
|
}
|
240
|
}
|
239
|
|
241
|
|
240
|
function matrix_configure_identityserver {
|
242
|
function matrix_configure_identityserver {
|
|
|
|
|
245
|
sed -i "s|Sydent Validation|Freedombone Matrix Account Validation|g" ${filepath}
|
247
|
sed -i "s|Sydent Validation|Freedombone Matrix Account Validation|g" ${filepath}
|
246
|
sed -i "s|pidfile.path.*|pidfile.path = /etc/sydent/sydent.pid|g" ${filepath}
|
248
|
sed -i "s|pidfile.path.*|pidfile.path = /etc/sydent/sydent.pid|g" ${filepath}
|
247
|
sed -i "s|log.path.*|log.path = /dev/null|g" ${filepath}
|
249
|
sed -i "s|log.path.*|log.path = /dev/null|g" ${filepath}
|
248
|
- sed -i "s|server.name.*|server.name = ${DEFAULT_DOMAIN_NAME}|g" ${filepath}
|
|
|
|
|
250
|
+ sed -i "s|server.name.*|server.name = ${DEFAULT_DOMAIN_NAME}/matrixid|g" ${filepath}
|
249
|
}
|
251
|
}
|
250
|
|
252
|
|
251
|
function matrix_diff {
|
253
|
function matrix_diff {
|