Manual Configuration
Connect via SSH
- Install SSH server (one-time operation):
sudo apt update
sudo apt install openssh-server -y
sudo systemctl start ssh
sudo systemctl enable ssh
- Connect via SSH from another computer using the terminal:
ssh user@your_server_IP
Note: You can find the server's IP address using the
hostname -Icommand in the Linux terminal.
- Open the configuration file and make changes:
# Standard path
sudo nano /opt/stratum-proxy/configs/stratum-proxy.yaml
Useful keyboard shortcuts in nano:Ctrl + O → Enter — save, Ctrl + X — exit.
- Restart the proxy:
docker compose down && docker compose up -d