-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
2a48513
commit d5e8119
Showing
2 changed files
with
43 additions
and
12 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
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 |
---|---|---|
@@ -1,14 +1,22 @@ | ||
# Maximum upload size in megabytes | ||
max_upload_size = 1024 | ||
# Default code length in the url | ||
default_code_length = 3 | ||
# Default expiration time in seconds | ||
default_expire_secs = 7200 | ||
|
||
[server] | ||
# Communication protocol (e.g., "http" or "https") | ||
schema = "http" | ||
# Host IP address for the server | ||
host = "127.0.0.1" | ||
# Port number for the server | ||
port = 8080 | ||
|
||
[fs] | ||
# Base directory for file system operations | ||
base_dir = "fs-tmp" | ||
|
||
[db] | ||
path = "db-tmp" | ||
# Path to the database file | ||
path = "db-tmp" |