mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-12-22 03:29:23 +00:00
48a25bece0
This feature added to help trace spammers. The IP address stored with one-way hash + salt to maintain user privacy.
36 lines
966 B
Text
36 lines
966 B
Text
# General Config
|
|
# ##############
|
|
LOG_LEVEL=INFO # can be DEBUG, INFO, WARN, ERROR
|
|
|
|
# Prober config
|
|
# #############
|
|
SERVER_ENDPOINT="http://127.0.0.1:18901"
|
|
API_KEY=
|
|
ACCEPT_TOR=false
|
|
TOR_SOCKS="127.0.0.1:9050"
|
|
ACCEPT_I2P=false
|
|
I2P_SOCKS="127.0.0.1:4447"
|
|
IPV6_CAPABLE=false
|
|
|
|
# Server Config
|
|
# #############
|
|
APP_URL="https://xmr.ditatompel.com" # URL where user can access the web UI, don't put trailing slash
|
|
|
|
# APP_SECRET is random 64-character hex string that give us 32 random bytes.
|
|
# For now, this used for ip address salt, but may be useful for another feature
|
|
# in the future. You can achieve this using `openssl rand -hex 32`.
|
|
APP_SECRET=
|
|
|
|
# Fiber Config
|
|
APP_PREFORK=false
|
|
APP_HOST="127.0.0.1"
|
|
APP_PORT=18090
|
|
APP_PROXY_HEADER="X-Real-Ip" # `CF-Connecting-IP` if using Cloudflare
|
|
APP_ALLOW_ORIGIN="http://localhost:5173,http://127.0.0.1:5173,https://xmr.ditatompel.com"
|
|
|
|
#DB settings:
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=3306
|
|
DB_USER=root
|
|
DB_PASSWORD=
|
|
DB_NAME=xmr_nodes
|