-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathatomic-server.env
More file actions
63 lines (45 loc) · 2.6 KB
/
atomic-server.env
File metadata and controls
63 lines (45 loc) · 2.6 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Recreates the `/setup` Invite for creating a new Root User.
# Also re-runs various populate commands, and re-builds the index
#ATOMIC_INITIALIZE=true
# Re-builds the indexes. Parses all the resources.
# Do this when updating requires it, or if you have issues with Collections / Queries / Search.
#ATOMIC_REBUILD_INDEX=true
# Use staging environments for services like LetsEncrypt
#ATOMIC_DEVELOPMENT=true
# The origin domain where the app is hosted, without the port and schema values.
ATOMIC_DOMAIN=localhost
# 9.883 is decimal for the `⚛` character.
# The port where the HTTP app is available. Set to 80 if you want this to be available on the network.
#ATOMIC_PORT=9883
# The port where the HTTPS app is available. Set to 443 if you want this to be available on the network.
#ATOMIC_PORT_HTTPS=9884
# The IP address of the server. Set to :: if you want this to be available to other devices on your network.
#ATOMIC_IP=::
# Use HTTPS instead of HTTP.
# Will get certificates from LetsEncrypt fully automated.
#ATOMIC_HTTPS=true
# Initializes DNS-01 challenge for LetsEncrypt. Use this if you want to use subdomains.
#ATOMIC_HTTPS_DNS=true
# The contact mail address for Let's Encrypt HTTPS setup
#ATOMIC_EMAIL=domain-admin@atomicserver.eu
# Custom JS script to include in the body of the HTML template
#ATOMIC_SCRIPT=
# Path for atomic data config directory. Defaults to "~/.config/atomic/""
ATOMIC_CONFIG_DIR=/etc/atomic-server
# Path for atomic data store folder. Contains your Store, uploaded files and more. Default value depends on your OS.
ATOMIC_DATA_DIR=/var/lib/atomic-server/data
# Path for the atomic data cache folder. Contains search index, temp files and more. Default value depends on your OS.
ATOMIC_CACHE_DIR=/var/cache/atomic-server
# CAUTION: Skip authentication checks, making all data publicly readable. Improves performance.
#ATOMIC_PUBLIC_MODE=false
# The full URL of the server. It should resolve to the home page.
# Set this if you use an external server or tunnel, instead of directly exposing atomic-server.
# If you leave this out, it will be generated from `domain`, `port` and `http` / `https`.
#ATOMIC_SERVER_URL=http://localhost:9883
# How much logs you want. Also influences what is sent to your trace service, if you've set one (e.g. OpenTelemetry)
#RUST_LOG=info
# How you want to trace what's going on with the server. Useful for monitoring performance and errors in production.
# Combine with `log_level` to get more or less data (`trace` is the most verbose)
#ATOMIC_TRACING=stdout
# Introduces random delays in the server, to simulate a slow connection. Useful for testing.
#ATOMIC_SLOW_MODE=false