diff --git a/1.SSO单点登录/sso/bin/.gitignore b/1.SSO单点登录/sso/bin/.gitignore
new file mode 100644
index 0000000..ba5cb5c
--- /dev/null
+++ b/1.SSO单点登录/sso/bin/.gitignore
@@ -0,0 +1,26 @@
+HELP.md
+/target/
+!.mvn/wrapper/maven-wrapper.jar
+
+### STS ###
+.apt_generated
+.classpath
+.factorypath
+.project
+.settings
+.springBeans
+.sts4-cache
+
+### IntelliJ IDEA ###
+.idea
+*.iws
+*.iml
+*.ipr
+
+### NetBeans ###
+/nbproject/private/
+/nbbuild/
+/dist/
+/nbdist/
+/.nb-gradle/
+/build/
diff --git a/1.SSO单点登录/sso/bin/pom.xml b/1.SSO单点登录/sso/bin/pom.xml
new file mode 100644
index 0000000..02ca007
--- /dev/null
+++ b/1.SSO单点登录/sso/bin/pom.xml
@@ -0,0 +1,69 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.1.3.RELEASE
+
+
+ com.example
+ sso
+ 0.0.1-SNAPSHOT
+ jar
+ sso
+ Demo project for Spring Boot
+
+
+ 1.8
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-data-redis
+
+
+
+ com.alibaba
+ fastjson
+ 1.2.4
+
+
+ com.auth0
+ java-jwt
+ 3.7.0
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+ CAS
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+ maven-compiler-plugin
+
+
+ 1.8
+ UTF-8
+
+
+
+
+
+
diff --git a/1.SSO单点登录/sso/bin/src/main/resources/application.yml b/1.SSO单点登录/sso/bin/src/main/resources/application.yml
new file mode 100644
index 0000000..7e9dce4
--- /dev/null
+++ b/1.SSO单点登录/sso/bin/src/main/resources/application.yml
@@ -0,0 +1,28 @@
+server:
+ port: 8081
+ servlet:
+ context-path: /sso
+spring:
+ application:
+ name: SSO
+ cache:
+ type: redis
+ redis:
+ database: 0
+ host: 192.168.226.5
+ port: 6379
+ password:
+ # 连接超时时间(ms)
+ timeout: 1000ms
+ # 高版本springboot中使用jedis或者lettuce
+ jedis:
+ pool:
+ # 连接池最大连接数(负值表示无限制)
+ max-active: 8
+ # 连接池最大阻塞等待时间(负值无限制)
+ max-wait: 5000ms
+ # 最大空闲链接数
+ max-idle: 8
+ # 最小空闲链接数
+ min-idle: 0
+
diff --git a/1.SSO单点登录/sso/bin/src/main/resources/static/index.html b/1.SSO单点登录/sso/bin/src/main/resources/static/index.html
new file mode 100644
index 0000000..8d40c7e
--- /dev/null
+++ b/1.SSO单点登录/sso/bin/src/main/resources/static/index.html
@@ -0,0 +1,63 @@
+
+
+
+
+ 认证中心
+
+这里是认证中心主页
+
+
+
+
+
+
+
+
+