dengbiao 1 mese fa
parent
commit
b14fd11a2b
3 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  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 Vedi File

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

## 要看 nginx.conf 和 wap conf



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

@@ -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 Vedi File

@@ -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



Caricamento…
Annulla
Salva