const minisrv_service_file = true; let site = ""; if (minisrv_config.services['wtv-author'].public_domain) { site = minisrv_config.services['wtv-author'].public_domain; } else { if (minisrv_config.services['wtv-author'].publish_mode == "service") { const target_service = minisrv_config.services[minisrv_config.services['wtv-author'].publish_dest]; if (target_service) { site = target_service.host + ":" + target_service.port; } } else { site = minisrv_config.services['wtv-author'].host + ":" + minisrv_config.services['wtv-author'].port; } } headers = `200 OK Content-Type: text/html` data = ` ${minisrv_config.config.service_name} community home pages
${minisrv_config.config.service_name} community home pages

Here you'll find pages created by members of the ${minisrv_config.config.service_name} community using ${minisrv_config.config.service_name}'s Page Builder.
If you know the name of a ${minisrv_config.config.service_name} user who has a home page, you can find that user's home page at an address of this form:

http://${site}/username

For example, if the username is zefie, then the address is:

http://${site}/zefie

`