-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Charles-Antoine Mathieu
committed
Nov 17, 2023
1 parent
0e686e6
commit 7d9b09e
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Debug = false # be more verbose | ||
Quiet = false # be less verbose | ||
URL = "https://plik.root.gg" # URL of the plik server | ||
OneShot = false # Set the uploads to be one shot by default (if available server side) | ||
Removable = false # Set the uploads to be removable by default (if available server side) | ||
Stream = false # Set the uploads to be stream by default (if available server side) | ||
Secure = false # Set the uploads to be encrypted by defaul | ||
SecureMethod = "openssl" # Set the default encryption method | ||
Archive = false # Set the uploads to be archives by default | ||
ArchiveMethod = "tar" # Set the default archive method | ||
DownloadBinary = "curl" # Set the default download command (curl / wget) | ||
Comments = "" # Set the default upload comments | ||
Login = "" # Set the default upload login (http basic auth) | ||
Password = "" # Set the default upload password (http basic auth) | ||
TTL = 0 # Set the default upload TTL (0 for server default) | ||
ExtendTTL = false # Set the uploads to extend TTL by default (if available server side) | ||
AutoUpdate = true # Enable/Disable auto update mechanism | ||
Token = "" # Set the Authentication Token (can be created from the UI) | ||
DisableStdin = false # Disable STDIN input | ||
Insecure = false # Disable HTTPS certificate validation | ||
|
||
[SecureOptions] | ||
Cipher = "aes-256-cbc" | ||
Openssl = "/usr/bin/openssl" | ||
Options = "-md sha512 -pbkdf2 -iter 120000" | ||
|
||
[ArchiveOptions] | ||
Compress = "gzip" | ||
Options = "" | ||
Tar = "/bin/tar" | ||
|