diff twisted/plugins/libervia_server.py @ 1128:6414fd795df4

server, pages: multi-sites refactoring: Libervia is now handling external sites (i.e. other sites than Libervia official site). The external site are declared in sites_path_public_dict (in [DEFAULT] section) which is read by template engine, then they are linked to virtual host with vhosts_dict (linking host name to site name) in [libervia] section. Sites are only instanced once, so adding an alias is just a matter of mapping the alias host name in vhosts_dict with the same site name. menu_json and url_redirections_dict can now accept keys named after site name, which will be linked to the data for the site. Data for default site can still be keyed at first level. Libervia official pages are added to external site (if pages are not overriden), allowing to call pages of the framework and to have facilities like login handling. Deprecated url_redirections_profile option has been removed.
author Goffi <goffi@goffi.org>
date Fri, 14 Sep 2018 21:41:28 +0200
parents 56ace2d45783
children 0cafb79ced6d
line wrap: on
line diff
--- a/twisted/plugins/libervia_server.py	Sun Sep 09 21:12:22 2018 +0200
+++ b/twisted/plugins/libervia_server.py	Fri Sep 14 21:41:28 2018 +0200
@@ -158,7 +158,7 @@
 # Options which are in sat.conf only
 OPT_PARAMETERS_CFG = [
     ["empty_password_allowed_warning_dangerous_list", None, "", None],
-    ["url_redirections_profile", None, "", None],
+    ["vhosts_dict", None, {}, None],
     ["url_redirections_dict", None, {}, None],
     ["menu_json", None, C.DEFAULT_MENU, None],
     ["tickets_trackers_json", None, None, None],