We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9c537 commit d0924ebCopy full SHA for d0924eb
app/src/views/dashboard/Environments.vue
@@ -120,7 +120,7 @@ const visible = computed(() => {
120
121
<AButton
122
type="primary"
123
- :disabled="env.id === item.id"
+ :disabled="!item.status || env.id === item.id"
124
ghost
125
@click="link_start(item)"
126
>
router/proxy.go
@@ -79,6 +79,11 @@ func proxy() gin.HandlerFunc {
79
80
defer resp.Body.Close()
81
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
+
87
c.Writer.WriteHeader(resp.StatusCode)
88
89
c.Writer.Header().Add("Content-Type", resp.Header.Get("Content-Type"))
0 commit comments