Skip to content

rmorgan/login-server

 
 

Repository files navigation

Cloud Foundry Login Server

Handles authentication on cloudfoundry.com and delegates all other identity management tasks to the UAA. Also provides OAuth2 endpoints issuing tokens to client apps for cloudfoundry.com (the tokens come from the UAA and no data are stored locally).

Running and Testing the Login Server

The Login Server is a standard JEE servlet application, and you can build a war file and deploy it to any container you like (mvn package and look in the target directory). For convenience there is also a Maven profile that will run the Login Server, the UAA and some sample apps all in the same container from the command line (assuming you have the UAA and Login Server cloned in separate directories with a common parent):

$ (cd uaa; mvn clean install)
$ cd login-server
$ mvn clean install
$ mvn tomcat7:run -P integration

You can run the Login Server integration tests using the command line as well (as long as the UAA project is built and installed first as above):

$ mvn test

Headless browser Selenium tests can be run from the login-server-integration-tests directory. These tests fail if a Login Server and UAA have not been started locally. They have been placed in their own module, so that they need not be run when installing the login-server, and are not run when performing a mvn install from the login-server directory.

These tests require PhantomJS to be installed.

$ cd login-server-integration-tests
$ mvn tomcat7:run -P integration
$ mvn verify

There are two documents that can help you configure the login server in your environment.

Login Server Configuration in deployment manifest

OpenAM Configuration

Contributing to the Login Server

Here are some ways for you to get involved in the community:

  • Get involved with the Cloud Foundry community on the mailing lists. Please help out on the mailing list by responding to questions and joining the debate.
  • Create github tickets for bugs and new features and comment and vote on the ones that you are interested in.
  • Github is for social coding: if you want to write code, we encourage contributions through pull requests from forks of this repository. If you want to contribute code this way, please reference an existing issue if there is one as well covering the specific issue you are addressing. Always submit pull requests to the "develop" branch.
  • Watch for upcoming articles on Cloud Foundry by subscribing to the cloudfoundry.org blog

About

Cloud Foundry Login Server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 43.5%
  • Java 31.1%
  • JavaScript 25.2%
  • Shell 0.2%