From 94f2e5c695526267cf6aaff3df0a660ac92d8de0 Mon Sep 17 00:00:00 2001 From: Mayank Soni <15159417+mayanxoni@users.noreply.github.com> Date: Thu, 10 Dec 2020 15:33:26 +0530 Subject: [PATCH] Update guide.md Using the command: sudo apt install -y nginx certbot python-certbot-nginx throws the following error: Package python-certbot-nginx is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source However the following packages replace it: python3-certbot-nginx E: Package 'python-certbot-nginx' has no installation candidate However, using sudo apt install -y nginx certbot python3-certbot-nginx can resolve the issue. --- doc/guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guide.md b/doc/guide.md index ce17a36144a7..fcedcf8c3693 100644 --- a/doc/guide.md +++ b/doc/guide.md @@ -215,7 +215,7 @@ If you prefer to use NGINX instead of Caddy then please follow steps 1-2 above a ```bash sudo apt update -sudo apt install -y nginx certbot python-certbot-nginx +sudo apt install -y nginx certbot python3-certbot-nginx ``` 4. Put the following config into `/etc/nginx/sites-available/code-server` with sudo: