Skip to content

Commit d0924eb

Browse files
committed
fix: authorization failed when link start to a wrong environment #342
1 parent 1e9c537 commit d0924eb

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

app/src/views/dashboard/Environments.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const visible = computed(() => {
120120

121121
<AButton
122122
type="primary"
123-
:disabled="env.id === item.id"
123+
:disabled="!item.status || env.id === item.id"
124124
ghost
125125
@click="link_start(item)"
126126
>

router/proxy.go

+5
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ func proxy() gin.HandlerFunc {
7979

8080
defer resp.Body.Close()
8181

82+
// rewrite status code to fix https://github.com/0xJacky/nginx-ui/issues/342
83+
if resp.StatusCode == http.StatusForbidden {
84+
resp.StatusCode = http.StatusServiceUnavailable
85+
}
86+
8287
c.Writer.WriteHeader(resp.StatusCode)
8388

8489
c.Writer.Header().Add("Content-Type", resp.Header.Get("Content-Type"))

0 commit comments

Comments
 (0)