Skip to content

macOS

Supported: macOS 10.15+ (Catalina or later), Apple Silicon and Intel.

  1. Open Terminal.

  2. Run the installer:

    Terminal window
    curl -sSL https://proxy.sotatek.works/releases/download/latest/install.sh | bash

    The script downloads the matching binary, verifies the SHA256 checksum, places it under /usr/local/bin/sotatek-proxy (or ~/.local/bin/sotatek-proxy if /usr/local/bin is not writable), seeds a default config, and registers a launchd user agent that auto-starts on login.

  3. Verify the daemon is up:

    Terminal window
    sotatek-proxy status
    curl http://127.0.0.1:3817/_proxy/healthz
WhatPath
Binary/usr/local/bin/sotatek-proxy (or ~/.local/bin/sotatek-proxy)
Config~/Library/Application Support/sotatek-proxy/config.yaml
Logs~/Library/Logs/sotatek-proxy/sotatek-proxy.log
Service~/Library/LaunchAgents/com.sotatek.proxy.plist
Terminal window
sotatek-proxy status # running / stopped
sotatek-proxy start # start now
sotatek-proxy stop # stop now
sotatek-proxy logs # tail last 100 lines
sotatek-proxy uninstall # remove launchd agent

Another process holds 3817. Either free the port or change config:

Terminal window
lsof -i :3817 # find the holder
sotatek-proxy stop && sotatek-proxy start

Or set port: 3818 in config.yaml and restart.

Terminal window
sotatek-proxy uninstall
rm /usr/local/bin/sotatek-proxy # or ~/.local/bin/sotatek-proxy
rm -rf ~/Library/Application\ Support/sotatek-proxy
rm -rf ~/Library/Logs/sotatek-proxy