Skip to content

Commit

Permalink
Merge pull request #99 from Tofandel/patch-1
Browse files Browse the repository at this point in the history
fix(docs): File permission should be octal in yaml
  • Loading branch information
tgalopin authored Sep 12, 2022
2 parents e077fec + 53f5929 commit 52fa43d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/B-configuration-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ flysystem:
skip_links: false
permissions:
file:
public: 0744
private: 0700
public: 0o744
private: 0o700
dir:
public: 0755
private: 0700
public: 0o755
private: 0o700
visibility: ~ # default null. Possible values are 'public' or 'private'
directory_visibility: ~ # default null. Possible values are 'public' or 'private'
case_sensitive: true
Expand Down

0 comments on commit 52fa43d

Please sign in to comment.