diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2021-02-06 11:48:57 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-06 11:48:57 +0900 |
| commit | c88902e640e6ac7f7c9ea4b66f8a6005273636ab (patch) | |
| tree | 9c9db6aa532143d8629fba826c8de18f5ccc54fd /src/client | |
| parent | Improve captcha (#7138) (diff) | |
| download | sharkey-c88902e640e6ac7f7c9ea4b66f8a6005273636ab.tar.gz sharkey-c88902e640e6ac7f7c9ea4b66f8a6005273636ab.tar.bz2 sharkey-c88902e640e6ac7f7c9ea4b66f8a6005273636ab.zip | |
s3ForcePathStyle (#7122)
Co-authored-by: ybw2016v <dogcraft@126.com>
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/pages/instance/settings.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/pages/instance/settings.vue b/src/client/pages/instance/settings.vue index 761044b011..cea621ba2d 100644 --- a/src/client/pages/instance/settings.vue +++ b/src/client/pages/instance/settings.vue @@ -175,6 +175,7 @@ <MkSwitch v-model:value="objectStorageUseSSL" :disabled="!useObjectStorage">{{ $ts.objectStorageUseSSL }}<template #desc>{{ $ts.objectStorageUseSSLDesc }}</template></MkSwitch> <MkSwitch v-model:value="objectStorageUseProxy" :disabled="!useObjectStorage">{{ $ts.objectStorageUseProxy }}<template #desc>{{ $ts.objectStorageUseProxyDesc }}</template></MkSwitch> <MkSwitch v-model:value="objectStorageSetPublicRead" :disabled="!useObjectStorage">{{ $ts.objectStorageSetPublicRead }}</MkSwitch> + <MkSwitch v-model:value="objectStorageS3ForcePathStyle" :disabled="!useObjectStorage">s3ForcePathStyle</MkSwitch> </template> </div> <div class="_footer"> @@ -325,6 +326,7 @@ export default defineComponent({ objectStorageUseSSL: false, objectStorageUseProxy: false, objectStorageSetPublicRead: false, + objectStorageS3ForcePathStyle: true, enableTwitterIntegration: false, twitterConsumerKey: null, twitterConsumerSecret: null, @@ -393,6 +395,7 @@ export default defineComponent({ this.objectStorageUseSSL = this.meta.objectStorageUseSSL; this.objectStorageUseProxy = this.meta.objectStorageUseProxy; this.objectStorageSetPublicRead = this.meta.objectStorageSetPublicRead; + this.objectStorageS3ForcePathStyle = this.meta.objectStorageS3ForcePathStyle; this.enableTwitterIntegration = this.meta.enableTwitterIntegration; this.twitterConsumerKey = this.meta.twitterConsumerKey; this.twitterConsumerSecret = this.meta.twitterConsumerSecret; @@ -547,6 +550,7 @@ export default defineComponent({ objectStorageUseSSL: this.objectStorageUseSSL, objectStorageUseProxy: this.objectStorageUseProxy, objectStorageSetPublicRead: this.objectStorageSetPublicRead, + objectStorageS3ForcePathStyle: this.objectStorageS3ForcePathStyle, enableTwitterIntegration: this.enableTwitterIntegration, twitterConsumerKey: this.twitterConsumerKey, twitterConsumerSecret: this.twitterConsumerSecret, |