]>
Commit | Line | Data |
---|---|---|
7503506a | 1 | # https://github.com/louislam/uptime-kuma/wiki/Environment-Variables |
2 | # Commented variables are set to defaults | |
3 | ||
4 | # Set the directory where the data should be stored (could be relative) | |
5 | #DATA_DIR=./data/ | |
6 | DATA_DIR=/var/lib/update-kuma/ | |
7 | ||
8 | # Host to bind to, could be an ip. | |
9 | #UPTIME_KUMA_HOST=:: | |
10 | ||
11 | # Port to listen to | |
12 | #UPTIME_KUMA_PORT=3001 | |
13 | ||
14 | # Path to SSL key | |
15 | #UPTIME_KUMA_SSL_KEY= | |
16 | ||
17 | # Path to SSL certificate | |
18 | #UPTIME_KUMA_SSL_CERT= | |
19 | ||
20 | # Cloudflare Tunnel Token (Available in 1.14.0) | |
21 | #UPTIME_KUMA_CLOUDFLARED_TOKEN= | |
22 | ||
23 | # By default, Uptime Kuma is not allowed in iframe if the domain name is not | |
24 | # the same as the parent. It protects your Uptime Kuma to be a phishing | |
25 | # website. If you don't need this protection, you can set it to true | |
26 | #UPTIME_KUMA_DISABLE_FRAME_SAMEORIGIN=false | |
27 | ||
28 | # Add your self-signed ca certs. (e.g. /cert/path/CAcert.pem) | |
29 | #NODE_EXTRA_CA_CERTS= | |
30 | ||
31 | # Ignore all TLS errors | |
32 | #NODE_TLS_REJECT_UNAUTHORIZED=0 | |
33 | ||
34 | # Set it to --insecure-http-parser, if you encountered error "Invalid header | |
35 | # value char" when your website using WAF | |
36 | #NODE_OPTIONS= |