Skip to content

Commit

Permalink
fix: 修复WebDAV使用非80,443端口无法修改、移动、上传的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
jamebal committed May 13, 2024
1 parent ed7c105 commit b8f4b2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ http {
proxy_set_header X-Real-PORT $remote_port;
proxy_set_header X-Forwarded-Host $the_host/file;
proxy_set_header X-Forwarded-Proto $the_scheme;
proxy_set_header X-Forwarded-Port $server_port;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header Scheme $scheme;
Expand Down
8 changes: 3 additions & 5 deletions src/layout/components/Sidebar/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ export default {
this.showTag = false
return
}
console.log(this.$route.meta.menuType)
tagApi.tagList({userId: this.$store.state.user.userId}).then(res => {
this.setTagListData(res.data)
})
Expand Down Expand Up @@ -360,19 +359,18 @@ export default {
}
.copy-btn {
margin-top: 10px;
margin-left: 34px;
margin-right: 0 !important;
margin-left: 16px;
}
.copy-btn:hover {
cursor: pointer;
}
.wedav-text {
font-size: 12px;
margin-left: 20px;
cursor: default;
}
}
.normal:hover {
cursor: pointer;
}
.collapse {
padding-left: 15px;
.wedav-text {
Expand Down

0 comments on commit b8f4b2e

Please sign in to comment.