mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 13:26:00 +03:00
[PR #190] [MERGED] Add a no_check_certificate option. #1389
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#1389
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/s3fs-fuse/s3fs-fuse/pull/190
Author: @Rotwang
Created: 5/20/2015
Status: ✅ Merged
Merged: 6/13/2015
Merged by: @ggtakec
Base:
master← Head:master📝 Commits (1)
3522e5eAdd no_check_certificate option which allows to ignore issues with self signed certs.📊 Changes
5 files changed (+24 additions, -0 deletions)
View changed files
📝
doc/man/s3fs.1(+3 -0)📝
src/curl.cpp(+12 -0)📝
src/curl.h(+2 -0)📝
src/s3fs.cpp(+4 -0)📝
src/s3fs_util.cpp(+3 -0)📄 Description
Which allows to ignore issues with self signed certs. For example in the company I work for we use our own s3 deployment and our certificates are self signed, so by default s3fs can't be used because of:
s3fs_check_service(3072): check services.
CheckBucket(2537): check a bucket.
RequestPerform(1631): connecting to URL https://mahbucket.mahs3.net/
RequestPerform(1733): ### CURLE_SSL_CACERT
RequestPerform(1790): ### retrying...
RemakeHandle(1453): Retry request. [type=5][url=https://mahbucket.mahs3.net//][path=/]
RequestPerform(1733): ### CURLE_SSL_CACERT
RequestPerform(1744): curlCode: 60 msg: Peer certificate cannot be authenticated with given CA certificates
This pull request adds non secure option to ignore this kind of errors.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.