During installation the Janssen Server, make sure you have selected Jans KC to be installed.
Or You can install Jans KC with the following command:
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: 'Create a VPC with public subnet and launch an EC2 instance' | |
| Parameters: | |
| InstanceType: | |
| Description: EC2 instance type | |
| Type: String | |
| Default: t2.micro | |
| AllowedValues: | |
| - t2.micro |
| from flask import Flask | |
| import socket | |
| import requests | |
| app = Flask(__name__) | |
| IMDS_URL = "http://169.254.169.254/latest" | |
| TOKEN_URL = f"{IMDS_URL}/api/token" | |
| def get_metadata(path): |
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: 'Static Website High Availability with Autoscaling' | |
| Parameters: | |
| KeyName: | |
| Type: AWS::EC2::KeyPair::KeyName | |
| Description: The name of an existing EC2 KeyPair to enable SSH access to the instances | |
| Resources: | |
| VPC: | |
| Type: AWS::EC2::VPC |
The implementation of SSO in order to connect with other services/providers/sites is a common requirement these days
For those cases when you have the need to integrate a third party service and embed some widgets in your site, and in order to make it in a secure way and based on dynamic data for the current authenticated, that is when the SSO integration comes handy for you.
This Tech spec will serve as a reference a SAML Single Sign On (SSO) integration.
| /** | |
| * PostPilot Poll Widget | |
| * Renders rating polls (movies/series) and vote polls (sports events) | |
| * from marker divs injected by PostPilot autopilot. | |
| * | |
| * Marker div formats: | |
| * Movie/Series: <div id="poll-tmdb-12345" data-type="rating" data-title="Movie Name"></div> | |
| * Sports Event: <div id="poll-event-2337375" data-type="vote" data-team-a="Liverpool" data-team-b="Man City" data-league="FA Cup"></div> | |
| * | |
| * Drop this script anywhere in your Blogspot theme (before </body>). |
Failed to initialize monitor device.
Could not open /dev/vmmon: No such file or directory.
Please make sure that the kernel module vmmon is loaded.
This happens when Secure Boot blocks VMware’s vmmon and vmnet kernel modules because they are not signed.