Skip to content

Commit

Permalink
fix: disable pure ssh lfs by default
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Oct 27, 2023
1 parent 79c8538 commit 840417d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ lfs:
# Enable Git LFS.
enabled: true
# Enable Git SSH transfer.
ssh_enabled: true
ssh_enabled: false

# Cron job configuration
jobs:
Expand Down Expand Up @@ -268,6 +268,8 @@ Soft Serve supports both Git LFS [HTTP](https://github.com/git-lfs/git-lfs/blob/

Use the `lfs` config section to customize your Git LFS server.

> **Note**: The pure-SSH transfer is disabled by default.
## Server Access

Soft Serve at its core manages your server authentication and authorization. Authentication verifies the identity of a user, while authorization determines their access rights to a repository.
Expand Down
2 changes: 1 addition & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ func DefaultConfig() *Config {
},
LFS: LFSConfig{
Enabled: true,
SSHEnabled: true,
SSHEnabled: false,
},
}
}
Expand Down

0 comments on commit 840417d

Please sign in to comment.