From 943158d19f879eb6ad515edeb59017671e4252c5 Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Thu, 13 Nov 2014 10:18:05 +0100 Subject: Add support for Persona Identity Provider Signed-off-by: Patrick Uiterwijk Reviewed-by: Simo Sorce --- templates/install/idp.conf | 8 +++++ templates/persona/provisioning.html | 62 ++++++++++++++++++++++++++++++++++++ templates/persona/signin_result.html | 22 +++++++++++++ 3 files changed, 92 insertions(+) create mode 100644 templates/persona/provisioning.html create mode 100644 templates/persona/signin_result.html (limited to 'templates') diff --git a/templates/install/idp.conf b/templates/install/idp.conf index 19af096..9cf2595 100644 --- a/templates/install/idp.conf +++ b/templates/install/idp.conf @@ -1,4 +1,5 @@ Alias /${instance}/ui ${staticdir}/ui +Alias /.well-known %{wellknowndir} WSGIScriptAlias /${instance} ${ipsilondir}/ipsilon WSGIDaemonProcess ${instance} user=${sysuser} group=${sysuser} home=${datadir} ${wsgi_socket} @@ -15,3 +16,10 @@ ${sslrequiressl} Require all granted + + + Require all granted + + + ForceType application/json + diff --git a/templates/persona/provisioning.html b/templates/persona/provisioning.html new file mode 100644 index 0000000..a693cac --- /dev/null +++ b/templates/persona/provisioning.html @@ -0,0 +1,62 @@ +{% extends "master.html" %} +{% block main %} +
+
+

This page is used internally

+
+
+ + + +{% endblock %} diff --git a/templates/persona/signin_result.html b/templates/persona/signin_result.html new file mode 100644 index 0000000..cda130d --- /dev/null +++ b/templates/persona/signin_result.html @@ -0,0 +1,22 @@ +{% extends "master.html" %} +{% block main %} +
+
+

This page is used internally

+
+
+ + + +{% endblock %} -- cgit