mirror of
				https://github.com/spantaleev/matrix-docker-ansible-deploy.git
				synced 2025-10-31 15:27:56 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
| {
 | |
| 	"default_server_config": {
 | |
| 		"m.homeserver": {
 | |
| 			"base_url": {{ matrix_riot_web_default_hs_url|string|to_json }},
 | |
| 			"server_name": {{ matrix_riot_web_default_server_name|string|to_json }}
 | |
| 		},
 | |
| 		"m.identity_server": {
 | |
| 			"base_url": {{ matrix_riot_web_default_is_url|string|to_json }}
 | |
| 		}
 | |
| 	},
 | |
| 	"settingDefaults": {
 | |
| 		"custom_themes": {{ matrix_riot_web_settingDefaults_custom_themes|to_json }}
 | |
| 	},
 | |
| 	"disable_custom_urls": {{ matrix_riot_web_disable_custom_urls|to_json }},
 | |
| 	"disable_guests": {{ matrix_riot_web_disable_guests|to_json }},
 | |
| 	"brand": {{ matrix_riot_web_brand|to_json }},
 | |
| 	"integrations_ui_url": {{ matrix_riot_web_integrations_ui_url|string|to_json }},
 | |
| 	"integrations_rest_url": {{ matrix_riot_web_integrations_rest_url|string|to_json }},
 | |
| 	"integrations_widgets_urls": {{ matrix_riot_web_integrations_widgets_urls|to_json }},
 | |
| 	"integrations_jitsi_widget_url": {{ matrix_riot_web_integrations_jitsi_widget_url|string|to_json }},
 | |
| 	"bug_report_endpoint_url": "https://riot.im/bugreports/submit",
 | |
| 	"enableLabs": true,
 | |
| 	"roomDirectory": {
 | |
| 		"servers": {{ matrix_riot_web_roomdir_servers|to_json }}
 | |
| 	},
 | |
| 	"welcomeUserId": {{ matrix_riot_web_welcome_user_id|to_json }},
 | |
| 	{% if matrix_riot_web_enable_presence_by_hs_url is not none %}
 | |
| 		"enable_presence_by_hs_url": {{ matrix_riot_web_enable_presence_by_hs_url|to_json }},
 | |
| 	{% endif %}
 | |
| 	"embeddedPages": {
 | |
| 		"homeUrl": {{ matrix_riot_web_embedded_pages_home_url|string|to_json }}
 | |
| 	},
 | |
| 	{% if matrix_riot_web_jitsi_preferredDomain is not none %}
 | |
| 	"jitsi": {
 | |
|         "preferredDomain": {{ matrix_riot_web_jitsi_preferredDomain|to_json }}
 | |
|     },
 | |
| 	{% endif %}
 | |
| 	"branding": {
 | |
| 		"authFooterLinks": {{ matrix_riot_web_branding_authFooterLinks|to_json }},
 | |
| 		"authHeaderLogoUrl": {{ matrix_riot_web_branding_authHeaderLogoUrl|to_json }},
 | |
| 		"welcomeBackgroundUrl": {{ matrix_riot_web_branding_welcomeBackgroundUrl|to_json }}
 | |
| 	}
 | |
| }
 |