Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/u014427391/sso
单点登录系统
https://github.com/u014427391/sso
Last synced: 2 months ago
JSON representation
单点登录系统
- Host: GitHub
- URL: https://github.com/u014427391/sso
- Owner: u014427391
- License: mit
- Created: 2018-08-31T13:05:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-21T00:09:54.000Z (over 2 years ago)
- Last Synced: 2024-10-12T07:37:54.139Z (3 months ago)
- Language: Java
- Size: 129 KB
- Stars: 16
- Watchers: 3
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
CAS Overlay Template
============================Generic CAS maven war overlay to exercise the latest versions of CAS. This overlay could be freely used as a starting template for local CAS maven war overlays. The CAS services management overlay is available [here](https://github.com/Jasig/cas-services-management-overlay).
# Versions
```xml
4.2.x
```# Requirements
* JDK 1.7+# Configuration
The `etc` directory contains the configuration files that need to be copied to `/etc/cas`.
Current files are:
* `cas.properties`
* `log4j2.xml`# Build
```bash
mvnw clean package
```or
```bash
mvnw.bat clean package
```# Deployment
## Embedded Jetty
* Create a Java keystore at `/etc/cas/jetty/thekeystore` with the password `changeit`.
* Import your CAS server certificate inside this keystore.```bash
mvnw jetty:run-forked
```CAS will be available at:
* `http://cas.server.name:8080/cas`
* `https://cas.server.name:8443/cas`## External
Deploy resultant `target/cas.war` to a Servlet container of choice.