fix: be specific about when commands are local or remote
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
f 2024-07-11 11:39:48 -03:00
parent 58d5e91927
commit aacdbac9ad
No known key found for this signature in database

View File

@ -32,6 +32,9 @@ You need to keep port `:80` and `:443` free on your server for web proxying to y
Docker. Docker.
``` ```
# ssh into your server
ssh <server-domain>
# docker install convenience script # docker install convenience script
wget -O- https://get.docker.com | bash wget -O- https://get.docker.com | bash
@ -42,9 +45,12 @@ sudo usermod -aG docker $USER
exit exit
ssh <server-domain> ssh <server-domain>
# setup swarm # back on the server, setup swarm
docker swarm init docker swarm init
docker network create -d overlay proxy docker network create -d overlay proxy
# now you can exit and start using abra
exit
``` ```
??? question "Do you support multiple web proxies?" ??? question "Do you support multiple web proxies?"