Browse Source

update

master
dengbiao 1 month ago
parent
commit
b14fd11a2b
3 changed files with 3 additions and 3 deletions
  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 View File

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


## 要看 nginx.conf 和 wap conf ## 要看 nginx.conf 和 wap conf




+ 1
- 1
app/lib/auth/auth.go View File

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


+ 1
- 1
app/md/app_redis_key.go View File

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


// 缓存key统一管理, %s格式化为masterId // 缓存key统一管理, %s格式化为masterId
const ( 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 JwtTokenCacheTime = 3600 * 24




Loading…
Cancel
Save