tmunzer / get-a-key

Single page Web-App to provide easy way for users to get a PPSK from Aerohive HMNG service

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NO LONGER MAINTAINED

As of August 30, 2019 this project is no longer maintained. It should still (probably) work, but I am no longer providing support, fixing issues, or adding new features.

Get-a-Key

This application provides a single page app to get a PPSK from HMNG service. This App can use AzureAD or ADFS to authenticate users.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Get-a-Key

Get-a-Key v1

  • full user interface customization
  • full configuration interface
  • AzureAD and ADFS integration
  • Docker version (deployement script available below) with NGINX and Let's Encrypt

Install

This Reference Application can be used as a standalone Application, or it can be deployed as a Docker Image.

Standalone Application

This Reference APP is built over NodeJS.

Deploy the Application

  • Install NodeJS LTS: https://nodejs.org/en/download/.
  • Clone this repo.
  • Configure the API parameters, in the src/config.js file. You will find an example in src/config_example.js. To be able to use this application, you will need an account on the Aerohive Developper Portal.
  • Install npm packages (npm install from the project folder).
  • Install bower packages (bower install from the project folder).
  • Go to src/bin folder into the project.
  • Start the APP with www. You can also use src/bin/monitor.js to monitor the NodeJS server and restart it if something went wrong.

Manage HTTPS at the application level

If you want to use OAuth authentication, the application will need to use HTTPS. To do so, you can use a reverse Proxy (NGINX, Apache, ...) and manage the certificates at the reverse proxy level, or you can start the application with www_with_https. In this case:

  • Create a cert folder into the src project folder.
  • Place you certificate and certificate key in this new folder, with the names server.pem and server.key.
  • Start the APP with www_with_https.

Docker Image

You can easily deploy this application with Docker. The image is publicly available on Docker Hub at https://hub.docker.com/r/tmunzer/get-a-key/. In this case, you can choose to manually deploy the image and create the container, or you can use the automation script (for Linux).

Automation Script

The Automation script will allow you to easily

  • Configure your application (ACS parameters)
  • Manage HTTPS certificates with self-signed certificates or with let's encrypt image (the script will automatically download and deploy the let's encrypt container if needed)
  • Download and Deploy dependencies, like NGINX and MongoDB container
  • Download, Deploy, Update the application container To use this script, just download it here, and run it in a terminal.

Manual deployment

If you are manually deploying this container, you will need to a reverse proxy to manage HTTPS.

docker create -v <path_to_config.js>/config.js:/app/config.js:ro --link <mongoDB_container_name>:mongo --name="<container_name>" -p 51360:80 tmunzer/get-a-key

About

Single page Web-App to provide easy way for users to get a PPSK from Aerohive HMNG service

License:GNU General Public License v3.0


Languages

Language:JavaScript 65.4%Language:HTML 19.1%Language:Shell 11.6%Language:CSS 3.7%Language:Dockerfile 0.1%