13 lines
528 B
Plaintext
13 lines
528 B
Plaintext
# Tor-specific environment variables
|
|
# Using relative URLs for maximum compatibility
|
|
NEXT_PUBLIC_API_URL=/api
|
|
# Flag to indicate we're running in Tor mode
|
|
NEXT_PUBLIC_TOR_MODE=true
|
|
# Use relative URLs for all API communications - critical for Tor
|
|
SERVER_API_URL=/api
|
|
# Disable HTTPS for Tor communication (onion services already provide encryption)
|
|
USE_HTTPS=false
|
|
# Tor uses the same port for both internal and external communications
|
|
INTERNAL_API_PORT=3000
|
|
# Tell the app to check for onion addresses
|
|
CHECK_ONION_ADDRESS=true |