mod_http_index: Improve page title
authorKim Alvefur <zash@zash.se>
Sun, 05 May 2019 10:24:53 +0200
changeset 3581 f169d9a513c6
parent 3580 1396ce148073
child 3582 ea63dc0cc824
mod_http_index: Improve page title
mod_http_index/mod_http_index.lua
--- a/mod_http_index/mod_http_index.lua	Sun May 05 09:22:53 2019 +0200
+++ b/mod_http_index/mod_http_index.lua	Sun May 05 10:24:53 2019 +0200
@@ -40,7 +40,7 @@
 	table.sort(http_apps, function (a, b) return a.name < b.name; end);
 	event.response.headers.content_type = "text/html";
 	return render(base_template, {
-		title = "HTTP Apps";
+		title = "Prosody IM - HTTP Services";
 		items = http_apps;
 		prosody_version = prosody.version;
 		mod_name = module.name;