update
continuous-integration/drone/push Build is passing Details

master
wanggang 4 years ago
parent 50131dbe96
commit 8d3fafd979

3
.gitignore vendored

@ -1,4 +1,5 @@
.vscode
.env
log
data
data
tmp

File diff suppressed because it is too large Load Diff

@ -0,0 +1,8 @@
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : "^(https|imaps|http)://localhost.*",
"name" : "TEST",
"id" : 10000003,
"description" : "This service definition authorizes all application urls that support HTTPS / HTTP and IMAPS protocols.",
"evaluationOrder" : 10000
}

@ -0,0 +1,8 @@
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : "^(https|imaps|http)://.*",
"name" : "TEST2",
"id" : 10000004,
"description" : "This service definition authorizes all application urls that support HTTPS / HTTP and IMAPS protocols.",
"evaluationOrder" : 10000
}

@ -7,6 +7,7 @@ networks:
config:
- subnet: 172.172.0.0/24
services:
#keytool -genkeypair -alias cas -keyalg RSA -keypass changeit -storepass changeit -keystore thekeystore -dname "CN=cas.example.org,OU=Example,OU=Org,C=US" -ext SAN="dns:example.org,dns:localhost,ip:127.0.0.1"
#casuser Mellon
cas:
image: apereo/cas:6.3.5
@ -16,6 +17,8 @@ services:
- 8443:8443
volumes:
- ./conf/cas/thekeystore:/etc/cas/thekeystore
- ./conf/cas/cas.properties:/etc/cas/config/cas.properties
- ./conf/cas/services:/etc/cas/services
command: ["/bin/sh", "/cas-overlay/bin/run-cas.sh"]
frp:
image: snowdreamtech/frpc:0.37.0

Loading…
Cancel
Save