2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 09:13:49 +08:00

feat: 优化上游设置

This commit is contained in:
2026-01-09 21:08:31 +08:00
parent 77cb594ee4
commit f1657daebb
3 changed files with 32 additions and 18 deletions

View File

@@ -546,8 +546,9 @@ func (s *ProxyVhostTestSuite) TestUpstreams() {
s.Empty(s.vhost.Upstreams())
// 设置上游服务器Apache 使用 balancer
upstreams := map[string]types.Upstream{
"backend": {
upstreams := []types.Upstream{
{
Name: "backend",
Servers: map[string]string{
"http://127.0.0.1:8080": "loadfactor=5",
"http://127.0.0.1:8081": "loadfactor=3",
@@ -567,12 +568,13 @@ func (s *ProxyVhostTestSuite) TestUpstreams() {
// 验证可以读取回来
got := s.vhost.Upstreams()
s.Len(got, 1)
s.Contains(got, "backend")
s.Equal("backend", got[0].Name)
}
func (s *ProxyVhostTestSuite) TestBalancerConfig() {
upstreams := map[string]types.Upstream{
"mybackend": {
upstreams := []types.Upstream{
{
Name: "mybackend",
Servers: map[string]string{
"http://127.0.0.1:8080": "loadfactor=5",
},
@@ -598,8 +600,9 @@ func (s *ProxyVhostTestSuite) TestBalancerConfig() {
}
func (s *ProxyVhostTestSuite) TestClearUpstreams() {
upstreams := map[string]types.Upstream{
"backend": {
upstreams := []types.Upstream{
{
Name: "backend",
Servers: map[string]string{"http://127.0.0.1:8080": ""},
},
}

View File

@@ -521,8 +521,9 @@ func (s *ProxyVhostTestSuite) TestUpstreams() {
s.Empty(s.vhost.Upstreams())
// 设置上游服务器
upstreams := map[string]types.Upstream{
"backend": {
upstreams := []types.Upstream{
{
Name: "backend",
Servers: map[string]string{
"127.0.0.1:8080": "weight=5",
"127.0.0.1:8081": "weight=3",
@@ -542,14 +543,15 @@ func (s *ProxyVhostTestSuite) TestUpstreams() {
// 验证可以读取回来
got := s.vhost.Upstreams()
s.Len(got, 1)
s.Contains(got, "backend")
s.Equal("least_conn", got["backend"].Algo)
s.Equal(32, got["backend"].Keepalive)
s.Equal("backend", got[0].Name)
s.Equal("least_conn", got[0].Algo)
s.Equal(32, got[0].Keepalive)
}
func (s *ProxyVhostTestSuite) TestUpstreamConfig() {
upstreams := map[string]types.Upstream{
"mybackend": {
upstreams := []types.Upstream{
{
Name: "mybackend",
Servers: map[string]string{
"127.0.0.1:8080": "weight=5",
},
@@ -576,8 +578,9 @@ func (s *ProxyVhostTestSuite) TestUpstreamConfig() {
}
func (s *ProxyVhostTestSuite) TestClearUpstreams() {
upstreams := map[string]types.Upstream{
"backend": {
upstreams := []types.Upstream{
{
Name: "backend",
Servers: map[string]string{"127.0.0.1:8080": ""},
},
}
@@ -590,8 +593,9 @@ func (s *ProxyVhostTestSuite) TestClearUpstreams() {
func (s *ProxyVhostTestSuite) TestProxyWithUpstream() {
// 先创建 upstream
upstreams := map[string]types.Upstream{
"api-servers": {
upstreams := []types.Upstream{
{
Name: "api-servers",
Servers: map[string]string{
"127.0.0.1:3000": "",
"127.0.0.1:3001": "",

View File

@@ -942,3 +942,10 @@ const updateTimeoutUnit = (proxy: any, unit: string) => {
</n-popconfirm>
</common-page>
</template>
<style scoped>
/* 拖拽时的占位卡片 */
:deep(.ghost-card) {
opacity: 0.5;
}
</style>