-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand Docker documentation and allow using .env
Fix seccomp error for Docker Compose
- Loading branch information
1 parent
c603006
commit 646fd88
Showing
3 changed files
with
120 additions
and
33 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,46 @@ | ||
# Redlib configuration | ||
# See the Configuration section of the README for a more detailed explanation of these settings. | ||
|
||
# Instance-specific settings | ||
# Enable SFW-only mode for the instance | ||
REDLIB_SFW_ONLY=off | ||
# Set a banner message for the instance | ||
REDLIB_BANNER= | ||
# Disable search engine indexing | ||
REDLIB_ROBOTS_DISABLE_INDEXING=off | ||
# Set the Pushshift frontend for "removed" links | ||
REDLIB_PUSHSHIFT_FRONTEND=www.unddit.com | ||
|
||
# Default user settings | ||
# Set the default theme (options: system, light, dark, black, dracula, nord, laserwave, violet, gold, rosebox, gruvboxdark, gruvboxlight) | ||
REDLIB_DEFAULT_THEME=system | ||
# Set the default front page (options: default, popular, all) | ||
REDLIB_DEFAULT_FRONT_PAGE=default | ||
# Set the default layout (options: card, clean, compact) | ||
REDLIB_DEFAULT_LAYOUT=card | ||
# Enable wide mode by default | ||
REDLIB_DEFAULT_WIDE=off | ||
# Set the default post sort method (options: hot, new, top, rising, controversial) | ||
REDLIB_DEFAULT_POST_SORT=hot | ||
# Set the default comment sort method (options: confidence, top, new, controversial, old) | ||
REDLIB_DEFAULT_COMMENT_SORT=confidence | ||
# Enable showing NSFW content by default | ||
REDLIB_DEFAULT_SHOW_NSFW=off | ||
# Enable blurring NSFW content by default | ||
REDLIB_DEFAULT_BLUR_NSFW=off | ||
# Enable HLS video format by default | ||
REDLIB_DEFAULT_USE_HLS=off | ||
# Hide HLS notification by default | ||
REDLIB_DEFAULT_HIDE_HLS_NOTIFICATION=off | ||
# Disable autoplay videos by default | ||
REDLIB_DEFAULT_AUTOPLAY_VIDEOS=off | ||
# Define a default list of subreddit subscriptions (format: sub1+sub2+sub3) | ||
REDLIB_DEFAULT_SUBSCRIPTIONS= | ||
# Hide awards by default | ||
REDLIB_DEFAULT_HIDE_AWARDS=off | ||
# Disable the confirmation before visiting Reddit | ||
REDLIB_DEFAULT_DISABLE_VISIT_REDDIT_CONFIRMATION=off | ||
# Hide score by default | ||
REDLIB_DEFAULT_HIDE_SCORE=off | ||
# Enable fixed navbar by default | ||
REDLIB_DEFAULT_FIXED_NAVBAR=on |
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