mirror of
https://github.com/tobychui/zoraxy.git
synced 2025-06-01 13:17:21 +02:00
Updated Troubleshooting Workarounds (markdown)
parent
2d5ead7735
commit
9f17d3aa6f
@ -1,3 +1,37 @@
|
||||
# Install Go on your host (Debian 11 / Ubuntu 22.04)
|
||||
|
||||
Installing Go is required to build Zoraxy. The packages in the Ubuntu and Debian repositories provide an outdated version (v1.18 for Ubuntu 22.04 and v1.15 for Debian Bullseye), but Zoraxy needs v1.20.
|
||||
|
||||
For Ubuntu, you can use the snap package, which is easily installed with:
|
||||
|
||||
`sudo snap install go -classic`
|
||||
|
||||
On Debian we need a few more steps, but it is not this hard:
|
||||
|
||||
1. Copy Go to your host:
|
||||
|
||||
`wget https://go.dev/dl/go1.20.4.linux-amd64.tar.gz`
|
||||
|
||||
2. Extract the archive and copy it to the right place:
|
||||
|
||||
`sudo tar -C /usr/local -xzf go1.20.4.linux-amd64.tar.gz`
|
||||
|
||||
3. Add Go to PATH:
|
||||
|
||||
`echo "export PATH=/usr/local/go/bin:${PATH}" | sudo tee -a $HOME/.profile`
|
||||
|
||||
4. Normally you would need to logout and login again, or you run this to apply:
|
||||
|
||||
`source $HOME/.profile`
|
||||
|
||||
5. Check Go version with:
|
||||
|
||||
`go version`
|
||||
|
||||

|
||||
|
||||
Successfully installed Go
|
||||
|
||||
# Synapse (Matrix) in Docker with federation support for Zoraxy
|
||||
|
||||
I assume Matrix is already running in docker with docker compose and you want to switch over to Zoraxy installed on your hostsystem. We will use a little workaround and use NGINX on the hostsystem.
|
||||
|
Loading…
x
Reference in New Issue
Block a user