mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 23:19:02 +00:00
48 lines
1.5 KiB
Bash
48 lines
1.5 KiB
Bash
HOST=0.0.0.0
|
|
PORT=22
|
|
|
|
# Generation settings
|
|
# Stored frame resolution in pixels. Higher = sharper but bigger .tsf files.
|
|
# regenerate your frames after changing it.
|
|
FRAME_RESOLUTION=512
|
|
|
|
# Playback settings.
|
|
# Playthroughs before the session is closed (0, unlimited).
|
|
MAX_LOOP=5
|
|
# Whether to keep looping the same frame set or pick a random one after each
|
|
# playthrough. Options: loop | random
|
|
PLAYBACK_MODE=random
|
|
# Let viewers switch frame sets with arrow keys.
|
|
ALLOW_USER_CONTROL=true
|
|
# Minimum ms between arrow-key switches
|
|
SWITCH_DEBOUNCE_MS=500
|
|
# Pause in ms after the fake login before playback starts.
|
|
LOGIN_DELAY=1500
|
|
|
|
# ASCII rendering (applied live)
|
|
# CHARSET: detailed | standard | simple | blocks, or a custom ramp string.
|
|
CHARSET=blocks
|
|
# Pixels darker than this (0-100) render as the darkest ramp character.
|
|
BRIGHTNESS_THRESHOLD=40
|
|
# Invert the brightness ramp (for light terminal backgrounds).
|
|
INVERT=false
|
|
|
|
# Max rendered width/height in characters.
|
|
MAX_DIMENSION=1080
|
|
|
|
# Connection limits. New connections over a limit are dropped immediately.
|
|
# Max simultaneous connections from a single client IP.
|
|
MAX_CONNECTIONS=10
|
|
# Max simultaneous connections across all clients combined.
|
|
MAX_TOTAL_CONNECTIONS=1000
|
|
# Login attempts allowed per connection before it is disconnected.
|
|
# (Empty password counts as an attempt.)
|
|
MAX_AUTH_ATTEMPTS=3
|
|
# SSH handshake deadline in ms (0 to disable).
|
|
HANDSHAKE_TIMEOUT=10000
|
|
|
|
# Log attempted usernames/passwords.
|
|
LOG_CREDENTIALS=true
|
|
# Minimum log level to emit: debug | info | warn | error
|
|
LOG_LEVEL=info
|