-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
42 lines (35 loc) · 1.67 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Working directory
# ALIENOS_WORK_DIR/blossom (stores blobs)
# ALIENOS_WORK_DIR/db (stores badger db file)
# ALIENOS_WORK_DIR/search_db (stores bulge db file)
# ALIENOS_WORK_DIR/management.json (stores management information)
# ALIENOS_WORK_DIR/nip05.json (stores nip05 document)
ALIENOS_WORK_DIR="alienos_wd/"
# Relay information document (NIP-11)
ALIENOS_RELAY_NAME="Alienos"
ALIENOS_RELAY_ICON="https://nostr.download/6695de4b095cd99ee7b4f6e2ef9ff89a9029efc1a017e60b8b5b5cb446b2c1e0.webp"
ALIENOS_RELAY_BANNER="https://nostr.download/5b3fa3e40365061d58946fdb1bc6549a4675186591f9f589f9983895bfac8940.webp"
ALIENOS_RELAY_DESCRIPTION="A self-hosting Nostr stack!"
ALIENOS_RELAY_PUBKEY="badbdda507572b397852048ea74f2ef3ad92b1aac07c3d4e1dec174e8cdc962a"
ALIENOS_RELAY_CONTACT="hi@dezh.tech"
# Set a private key here. this would be used to send system notifications to admin (ALIENOS_RELAY_PUBKEY) as DM.
# Warning: don't use your main key. generate a key only for this purpose.
ALIENOS_RELAY_SELF="b80a9c92d74c5d8067cc7b39e93999ce1c69cd44fa66f46387b863f3a6dc25e0" # not safe! just for example.
# Network
ALIENOS_RELAY_PORT=":7771"
ALIENOS_RELAY_BIND="0.0.0.0"
ALIENOS_RELAY_URL="nostr.kehiy.net"
# Backup Info
ALIENOS_BACKUP_ENABLE="false"
ALIENOS_BACKUP_INTERVAL_HOURS=24
ALIENOS_S3_ACCESS_KEY_ID=""
ALIENOS_S3_SECRET_KEY=""
ALIENOS_S3_ENDPOINT=""
ALIENOS_S3_REGION=""
ALIENOS_S3_BUCKET_NAME="alienos-relay-backups"
# Access Control
# If set to true, accept notes only with white listed pubkeys/kinds.
ALIENOS_PUBKEY_WHITE_LISTED="false"
ALIENOS_KIND_WHITE_LISTED="false"
# List of keys with access to NIP-86 moderation APIs
ALIENOS_ADMINS="badbdda507572b397852048ea74f2ef3ad92b1aac07c3d4e1dec174e8cdc962a"