diff options
author | Rutger Broekhoff | 2024-04-26 20:32:23 +0200 |
---|---|---|
committer | Rutger Broekhoff | 2024-04-26 20:32:23 +0200 |
commit | 2ad6fb0dbd25800e029926da8ce5c2b8464a6a89 (patch) | |
tree | 86a3463b133531fc6d217edbe87060bea22c35ba | |
parent | 45dd47e0f26170848af6f8af872a74213b170229 (diff) | |
download | gitolfs3-2ad6fb0dbd25800e029926da8ce5c2b8464a6a89.tar.gz gitolfs3-2ad6fb0dbd25800e029926da8ce5c2b8464a6a89.zip |
Fix README so it renders properly on cgit
-rw-r--r-- | README.md | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -12,6 +12,7 @@ Gitolite anymore. (It was too extensive for my use case, and I prefer to keep | |||
12 | the complexity of my system down as much as possible.) | 12 | the complexity of my system down as much as possible.) |
13 | 13 | ||
14 | Currently, it has the following features: | 14 | Currently, it has the following features: |
15 | |||
15 | - Storage with S3-compatible services (at the moment of writing, I am using | 16 | - Storage with S3-compatible services (at the moment of writing, I am using |
16 | Scaleway Object Storage for this purpose) | 17 | Scaleway Object Storage for this purpose) |
17 | - Git LFS Batch API support. Only the basic transfer adapter is supported. Only | 18 | - Git LFS Batch API support. Only the basic transfer adapter is supported. Only |
@@ -24,14 +25,14 @@ Currently, it has the following features: | |||
24 | to have to use something like Gitolite.) | 25 | to have to use something like Gitolite.) |
25 | - Public/private repos based on the `git-daemon-export-ok` file in the bare | 26 | - Public/private repos based on the `git-daemon-export-ok` file in the bare |
26 | repo. (I have a very particular setup in which this is desirable.) | 27 | repo. (I have a very particular setup in which this is desirable.) |
27 | - Downloads for files in public repositories are 'proxied' through the | 28 | - Downloads for files in public repositories are 'proxied' through the |
28 | Gitolfs3 server, at least when accessed from the public internet. | 29 | Gitolfs3 server, at least when accessed from the public internet. |
29 | - Unauthenticated users accessing the service over a private network | 30 | - Unauthenticated users accessing the service over a private network |
30 | (authorized by `X-Fowarded-Host`) can access all repositories. Downloads | 31 | (authorized by `X-Fowarded-Host`) can access all repositories. Downloads |
31 | for these users are not proxied: instead, they are directed to pre-signed | 32 | for these users are not proxied: instead, they are directed to pre-signed |
32 | S3 download URLs. | 33 | S3 download URLs. |
33 | - Authenticated users can download and upload for all repositories, | 34 | - Authenticated users can download and upload for all repositories, |
34 | regardless of how they access the service. | 35 | regardless of how they access the service. |
35 | 36 | ||
36 | This program, as it is, solely serves my needs. Although I may occasionally add | 37 | This program, as it is, solely serves my needs. Although I may occasionally add |
37 | some features or perform some cleanups (especially the server still requires | 38 | some features or perform some cleanups (especially the server still requires |