This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add encrypted files support for self-hosting
- Loading branch information
Karol Sójko
committed
Jun 10, 2022
1 parent
153268c
commit 9f290fa
Showing
7 changed files
with
80 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
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
Empty file.
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
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,17 @@ | ||
LOG_LEVEL=info | ||
NODE_ENV=production | ||
VERSION=local | ||
|
||
PORT=3000 | ||
|
||
S3_BUCKET_NAME= | ||
S3_AWS_REGION= | ||
SNS_TOPIC_ARN= | ||
SNS_AWS_REGION= | ||
|
||
REDIS_URL=redis://cache | ||
REDIS_EVENTS_CHANNEL=events | ||
|
||
MAX_CHUNK_BYTES=100000000 | ||
|
||
NEW_RELIC_ENABLED=false |
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
Would this actually work? AFAIK the client is supposed to access the files server directly, which means that the files server needs its own public-facing URL, not just localhost. Maybe this should live in the
.env
file to be manually configured by the user instead?