Explorar el Código

update

master
dengbiao hace 1 mes
padre
commit
b14fd11a2b
Se han modificado 3 ficheros con 3 adiciones y 3 borrados
  1. +1
    -1
      README.md
  2. +1
    -1
      app/lib/auth/auth.go
  3. +1
    -1
      app/md/app_redis_key.go

+ 1
- 1
README.md Ver fichero

@@ -1,4 +1,4 @@
# 广告站长平台
# 广告媒体平台

## 要看 nginx.conf 和 wap conf



+ 1
- 1
app/lib/auth/auth.go Ver fichero

@@ -14,7 +14,7 @@ func GenToken(admId int, username string) (string, error) {
Username: username,
StandardClaims: jwt.StandardClaims{
ExpiresAt: time.Now().Add(TokenExpireDuration).Unix(), // 过期时间
Issuer: "advertisement", // 签发人
Issuer: "advertisement_medium", // 签发人
},
}
// 使用指定的签名方法创建签名对象


+ 1
- 1
app/md/app_redis_key.go Ver fichero

@@ -2,7 +2,7 @@ package md

// 缓存key统一管理, %s格式化为masterId
const (
JwtTokenKey = "%s:advertisement_jwt_token:%s" // jwt, 占位符:ip, admin:id
JwtTokenKey = "%s:advertisement_medium_jwt_token:%s" // jwt, 占位符:ip, admin:id

JwtTokenCacheTime = 3600 * 24



Cargando…
Cancelar
Guardar