NAS Service Manager

Manage and access your services directly from any device

Managed Services

No services added yet

Create your first service to get started

Add New Service

API 使用说明

GET 请求添加:
/record?name={服务名}&ipaddr={地址}&desc={描述}

通过URL参数直接添加服务。例如:/record?name=minifile&ipaddr=58.20.119.98:25783&desc=maxnas

表单字段说明:
  • Service Name: 服务名称,用于路径访问,minifile
  • Domain Prefix: 域名前缀,会自动生成 {prefix}.cswklt.top
  • Service Address: 服务地址,格式为 IP:端口 或域/li>

Access Guide

Path Redirect:
{worker-url}/{service-name}

Simple redirect to service. Fast but may expose backend URL. Example: https://test.cswklt.top/minifile

Proxy Access:
{worker-url}/proxy/{service-name}

Recommended: Full transparent proxy with URL rewriting, cookie handling, and SPA support. Keeps backend hidden. Example: https://test.cswklt.top/proxy/wiz

UUID Access:
{worker-url}/uuid/{service-uuid}

Permanent link using unique identifier. URL never changes even if service name is updated. Example: https://test.cswklt.top/uuid/abc123...

Domain Direct:
http://{domain}:{port}

Direct access via configured domain. Requires DNS setup. Example: http://maxnas.cswklt.top:25784

IP Direct:
http://{ip}:{port}

Direct IP access. Only works within local network or if IP is publicly accessible. Example: http://58.20.119.98:25783

When to Use Each Method

  • Proxy Access: Best for web applications, handles authentication, cookies, and complex JavaScript
  • Path Redirect: Quick access for simple services or when you want to see the real URL
  • UUID Access: For bookmarks and permanent links that won't break
  • Domain/IP Direct: When you need maximum performance or the service doesn't work through proxy