mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2026-06-16 01:02:14 +08:00
Processed apps directory via GitHub Actions
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
# MySQL 服务 (前置检查) [必填]
|
||||
PANEL_DB_TYPE=mysql
|
||||
|
||||
# Redis 服务 (前置检查) [必填]
|
||||
PANEL_REDIS_TYPE=redis
|
||||
|
||||
# WebUI 端口 [必填]
|
||||
PANEL_APP_PORT_HTTP=1898
|
||||
|
||||
# 管理员 用户名 [必填]
|
||||
ADMIN_USERNAME=admin
|
||||
|
||||
# 管理员 密码 [必填]
|
||||
topiam.cn=topiam.cn
|
||||
|
||||
# 数据库 主机 [必填]
|
||||
DB_HOST=127.0.0.1
|
||||
|
||||
# 数据库 端口 [必填]
|
||||
DB_PORT=3306
|
||||
|
||||
# 数据库 用户名 [必填]
|
||||
DB_USER=topiam
|
||||
|
||||
# 数据库 密码 [必填]
|
||||
DB_USER_PASSWORD=
|
||||
|
||||
# 数据库 名称 [必填]
|
||||
DB_NAME=topiam
|
||||
|
||||
# Redis 主机 [必填]
|
||||
REDIS_HOSTNAME=127.0.0.1
|
||||
|
||||
# Redis 端口 [必填]
|
||||
REDIS_PORT=6379
|
||||
|
||||
# Redis 索引 [必填]
|
||||
REDIS_DBINDEX=0
|
||||
|
||||
# Redis 密码
|
||||
REDIS_PASSWORD=
|
||||
|
||||
@@ -0,0 +1,124 @@
|
||||
additionalProperties:
|
||||
formFields:
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_DB_HOST
|
||||
required: true
|
||||
type: service
|
||||
default: mysql
|
||||
edit: true
|
||||
envKey: PANEL_DB_TYPE
|
||||
labelZh: MySQL 服务 (前置检查)
|
||||
labelEn: Database Service (Pre-check)
|
||||
required: true
|
||||
type: apps
|
||||
values:
|
||||
- label: MySQL
|
||||
value: mysql
|
||||
- label: MariaDB
|
||||
value: mariadb
|
||||
- label: Percona
|
||||
value: percona
|
||||
- child:
|
||||
default: ""
|
||||
envKey: PANEL_REDIS_SERVICE
|
||||
required: true
|
||||
type: service
|
||||
default: redis
|
||||
envKey: PANEL_REDIS_TYPE
|
||||
labelZh: Redis 服务 (前置检查)
|
||||
labelEn: Redis Service (Pre-check)
|
||||
required: true
|
||||
type: apps
|
||||
values:
|
||||
- label: Redis
|
||||
value: redis
|
||||
- default: 1898
|
||||
envKey: PANEL_APP_PORT_HTTP
|
||||
labelZh: WebUI 端口
|
||||
labelEn: WebUI port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "admin"
|
||||
edit: true
|
||||
key: admin
|
||||
envKey: ADMIN_USERNAME
|
||||
labelZh: 管理员 用户名
|
||||
labelEn: Admin Username
|
||||
required: true
|
||||
rule: paramCommon
|
||||
type: text
|
||||
- default: "topiam.cn"
|
||||
edit: true
|
||||
key: ADMIN_PASSWORD
|
||||
envKey: topiam.cn
|
||||
labelZh: 管理员 密码
|
||||
labelEn: Admin Password
|
||||
required: true
|
||||
type: password
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: DB_HOST
|
||||
labelZh: 数据库 主机
|
||||
labelEn: Database Host
|
||||
required: true
|
||||
type: text
|
||||
- default: 3306
|
||||
edit: true
|
||||
envKey: DB_PORT
|
||||
labelZh: 数据库 端口
|
||||
labelEn: Database Port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: "topiam"
|
||||
edit: true
|
||||
envKey: DB_USER
|
||||
labelZh: 数据库 用户名
|
||||
labelEn: Database Username
|
||||
required: true
|
||||
type: text
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: DB_USER_PASSWORD
|
||||
labelZh: 数据库 密码
|
||||
labelEn: Database Password
|
||||
required: true
|
||||
type: password
|
||||
- default: "topiam"
|
||||
edit: true
|
||||
envKey: DB_NAME
|
||||
labelZh: 数据库 名称
|
||||
labelEn: Database Name
|
||||
required: true
|
||||
type: text
|
||||
- default: "127.0.0.1"
|
||||
edit: true
|
||||
envKey: REDIS_HOSTNAME
|
||||
labelZh: Redis 主机
|
||||
labelEn: Redis Host
|
||||
required: true
|
||||
type: text
|
||||
- default: 6379
|
||||
edit: true
|
||||
envKey: REDIS_PORT
|
||||
labelZh: Redis 端口
|
||||
labelEn: Redis Port
|
||||
required: true
|
||||
rule: paramPort
|
||||
type: number
|
||||
- default: 0
|
||||
edit: true
|
||||
envKey: REDIS_DBINDEX
|
||||
labelZh: Redis 索引
|
||||
labelEn: Redis Index
|
||||
required: true
|
||||
type: number
|
||||
- default: ""
|
||||
edit: true
|
||||
envKey: REDIS_PASSWORD
|
||||
labelZh: Redis 密码
|
||||
labelEn: Redis Password
|
||||
required: false
|
||||
type: password
|
||||
@@ -0,0 +1,29 @@
|
||||
networks:
|
||||
1panel-network:
|
||||
external: true
|
||||
services:
|
||||
topiam-ce:
|
||||
container_name: topiam-ce
|
||||
env_file:
|
||||
- ./envs/global.env
|
||||
- .env
|
||||
environment:
|
||||
- INITIAL_PASSWORD_VALUE=ADMIN_PASSWORD
|
||||
- spring.datasource.url=jdbc:mysql://${DB_HOST}:${DB_PORT}/${DB_NAME}?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true&rewriteBatchedStatements=true
|
||||
- spring.datasource.username=${DB_USER}
|
||||
- spring.datasource.password=${DB_USER_PASSWORD}
|
||||
- spring.data.redis.host=${REDIS_HOSTNAME}
|
||||
- spring.data.redis.port=${REDIS_PORT}
|
||||
- spring.data.redis.password=${REDIS_PASSWORD}
|
||||
- spring.data.redis.database=${REDIS_DBINDEX}
|
||||
image: registry.cn-hangzhou.aliyuncs.com/topiam/topiam-ce:2.0.0
|
||||
labels:
|
||||
createdBy: Apps
|
||||
networks:
|
||||
- 1panel-network
|
||||
ports:
|
||||
- ${PANEL_APP_PORT_HTTP}:1898
|
||||
restart: always
|
||||
volumes:
|
||||
- ${TOPIAM_CE_ROOT_PATH}/conf:/opt/topiam/conf
|
||||
- ${TOPIAM_CE_ROOT_PATH}/logs:/opt/topiam/logs
|
||||
@@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
chown -R 1001:1001 data/logs
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
# TOPIAM
|
||||
|
||||
IAM/IDaaS 身份管理平台
|
||||
|
||||

|
||||
|
||||
TOPIAM(Top Identity and Access Management),是一款开源的身份管理与访问控制系统,广泛应用于政府、企业内部、教育机构等身份认证场景。作为一款专注于身份管理与访问控制场景的软件产品,TOPIAM
|
||||
支持 OIDC、OAuth2、SAML2、JWT、CAS 等主流认证协议,并能够集成钉钉、企业微信、飞书、LDAP、AD 等多种身份源,轻松实现用户全生命周期管理与数据同步。
|
||||
|
||||

|
||||
|
||||
## 应用简介
|
||||
|
||||
+ 提供统一组织信息管理,多维度建立对应关系,实现在一个平台对企业人员、组织架构、应用信息的高效统一管理。
|
||||
+ 支持钉钉、飞书、企业微信等身份源集成能力,实现系统和企业 OA
|
||||
平台数据联动,以用户为管理基点,结合入职、离职、调岗、兼职等人事事件,关联其相关应用权限变化而变化,保证应用访问权限的安全控制。
|
||||
+ 支持多因素认证,行为验证码、社交认证,融合认证等机制,保证用户认证安全可靠。
|
||||
+ 支持微信、微博、QQ 等社交认证集成,使企业具有快速纳入互联网化认证能力。
|
||||
+ 支持 SAML2,OAuth2,OIDC,CAS,表单代填等认证协议及机制,实现单点登录功能,预配置大量 SaaS 应用及传统应用模板,开箱即用。
|
||||
+ 完善的安全审计,详尽记录每一次用户行为,使每一步操作有据可循,实时记录企业信息安全状况,精准识别企业异常访问和潜在威胁的源头。
|
||||
+ 提供标准 REST 和 SCIM2.0 接口轻松完成机构用户同步,实现企业对于账号生命周期的精细化管理。
|
||||
+ 开源、安全、自主可控。
|
||||
|
||||
TOPIAM 数字身份管控平台为企业提供一套集中式的账号、权限、认证、审计工具,帮助企业打通身份数据孤岛,实现“一个账号、一次认证、多点通行”的效果,强化企业安全体系的同时,提升组织管理效率,助力企业数字化升级转型。
|
||||
|
||||
## 安装说明
|
||||
|
||||
> 默认用户名:`admin`
|
||||
>
|
||||
> 默认密码:`topiam.cn`
|
||||
|
||||
---
|
||||
|
||||

|
||||
@@ -0,0 +1,15 @@
|
||||
additionalProperties:
|
||||
key: topiam-ce
|
||||
name: TOPIAM
|
||||
tags:
|
||||
- WebSite
|
||||
- Middleware
|
||||
- Local
|
||||
shortDescZh: IAM/IDaaS 身份管理平台
|
||||
shortDescEn: IAM/IDaaS Identity Management Platform
|
||||
type: website
|
||||
crossVersionUpdate: true
|
||||
limit: 0
|
||||
website: https://topiam.cn/
|
||||
github: https://github.com/topiam/eiam/
|
||||
document: https://topiam.cn/docs/overview/introduction/
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
Reference in New Issue
Block a user