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

master
wanggang 4 years ago
parent 50131dbe96
commit 8d3fafd979

1
.gitignore vendored

@ -2,3 +2,4 @@
.env .env
log 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: config:
- subnet: 172.172.0.0/24 - subnet: 172.172.0.0/24
services: 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 #casuser Mellon
cas: cas:
image: apereo/cas:6.3.5 image: apereo/cas:6.3.5
@ -16,6 +17,8 @@ services:
- 8443:8443 - 8443:8443
volumes: volumes:
- ./conf/cas/thekeystore:/etc/cas/thekeystore - ./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"] command: ["/bin/sh", "/cas-overlay/bin/run-cas.sh"]
frp: frp:
image: snowdreamtech/frpc:0.37.0 image: snowdreamtech/frpc:0.37.0

Loading…
Cancel
Save