first commit

This commit is contained in:
2026-01-18 09:05:55 +08:00
commit e3c1fa87fb
10 changed files with 758 additions and 0 deletions

9
frpc/docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
services:
web:
image: snowdreamtech/frpc:latest
container_name: frpc
restart: always
network_mode: "host"
volumes:
- ./frpc.toml:/etc/frp/frpc.toml

37
frpc/frpc.toml Normal file
View File

@@ -0,0 +1,37 @@
[common]
server_addr = 116.62.233.247
bind_port = 7000
authentication_method = token
authenticate_new_work_conns = true
token = 839157
[ssh]
type = tcp
local_ip = 127.0.0.1
local_port = 22
remote_port = 20022
[open-webui]
type = tcp
local_ip = 127.0.0.1
local_port = 3000
remote_port = 23000
[memos]
type = tcp
local_ip = 127.0.0.1
local_port = 5230
remote_port = 25230
[gitea]
type = tcp
local_ip = 127.0.0.1
local_port = 3033
remote_port = 23033
[nginx]
type = tcp
local_ip = 127.0.0.1
local_port = 8080
remote_port =28080