This commit is contained in:
acgist
2022-11-10 07:24:15 +08:00
parent ec9a0ff37a
commit 20e5114f2e
70 changed files with 3096 additions and 75 deletions

View File

@@ -2,8 +2,12 @@ package com.acgist.taoyao;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
@ComponentScan(basePackages = "com.acgist.taoyao")
@SpringBootApplication
@EnableAspectJAutoProxy(exposeProxy = true)
public class TaoyaoApplication {
public static void main(String[] args) {

View File

@@ -0,0 +1,31 @@
server:
port: 8888
ssl:
key-alias: taoyao
key-store: classpath:taoyao.jks
key-store-password: 123456
key-password: 123456
spring:
profiles:
active: dev
application:
name: taoyao-server
jackson:
time-zone: GMT+8
servlet:
multipart:
max-file-size: 256MB
max-request-size: 256MB
taoyao:
url: https://gitee.com/acgist/taoyao
name: 桃夭
timeout: 5000
version: 1.0.0
description: WebRTC信令服务
security:
realm: taoyao
permit: /v3/api-docs/,/swagger-ui/,/error
username:
password:
scheduled:
session: 0 * * * * ?

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>终端</title>
</head>
<body>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>桃夭</title>
</head>
<body>
</body>
</html>

View File

@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>房间</title>
</head>
<body>
</body>
</html>

Binary file not shown.