blob: ce628bd619c47dba4dab2a23b4b787c679717c68 (
plain)
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
|
##################################################
#
# Rimgo is configured using environment variables
#
# This file should automatically be loaded
# by `rimgo.service` systemd unit
# through the `EnvironmentFile=` line
#
##################################################
# Port to listen on
PORT=3000
# Address to listen on
ADDRESS=0.0.0.0
# Should not be changed unless you have a registered Imgur app
IMGUR_CLIENT_ID=546c25a59c58ad7
# Use WebP for images unless the no_webp query parameter is set
FORCE_WEBP=0
# Optional, URL to privacy policy
PRIVACY_POLICY=
# Optional, message to display on privacy page
PRIVACY_MESSAGE=
# (clearnet only) The country the instance is located
PRIVACY_COUNTRY=
# (clearnet only) The provider the instance is using (ISP for self-hosted, or hosting provider)
PRIVACY_PROVIDER=
# Whether the instance uses Cloudflare proxy (orange cloud icon)
PRIVACY_CLOUDFLARE=
# (required) Whether the instance collects data
PRIVACY_NOT_COLLECTED=
# Whether the instance collects IP addresses
PRIVACY_IP=
# Whether the instance collects request URLs
PRIVACY_URL=
# Whether the instance collects user agents
PRIVACY_DEVICE=
# Whether the instance only collects this data for diagnostic purposes
PRIVACY_DIAGNOSTICS=
|