From e2486ba9b2d841d7bbf47be5013e3c4ede3f4024 Mon Sep 17 00:00:00 2001 From: Daniel LaCosse <3759828+daniellacosse@users.noreply.github.com> Date: Wed, 21 Feb 2024 17:11:41 -0500 Subject: [PATCH] chore: update reference to install script (#1512) --- src/shadowbox/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shadowbox/README.md b/src/shadowbox/README.md index 12a2d5db0..9e4fd8b89 100644 --- a/src/shadowbox/README.md +++ b/src/shadowbox/README.md @@ -12,13 +12,13 @@ client apps. Shadowbox is also compatible with standard Shadowsocks clients. To install and run Shadowbox on your own server, run ``` -sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh)" +sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-apps/master/server_manager/install_scripts/install_server.sh)" ``` You can specify flags to customize the installation. For example, to use hostname `myserver.com` and the port 443 for access keys, you can run: ``` -sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-server/master/src/server_manager/install_scripts/install_server.sh)" install_server.sh --hostname=myserver.com --keys-port=443 +sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/Jigsaw-Code/outline-apps/master/server_manager/install_scripts/install_server.sh)" install_server.sh --hostname=myserver.com --keys-port=443 ``` Use `sudo --preserve-env` if you need to pass environment variables. Use `bash -x` if you need to debug the installation.