certbot
to set up SSL.rstudio
configuration in nginx
to support https
.nginx.conf
:
server_name yourdomain.you www.yourdomain.you;
sudo apt-get install certbot python3-certbot-nginx
sudo systemctl restart nginx
sudo certbot –nginx -d yourdomain.you -d www.yourdomain.you
sudo vim /etc/nginx/nginx.conf
proxy_set_header X-Forwarded-Proto https;
in the rstudio
locationsudo systemctl restart nginx
(you may have already set this up in Chapter 12)
launch-wizard-2
)
https://yourdomain.you/rstudio
, http://yourdomain.you/rstudio
, etc.00:21:29 novica nakov: it's more fun with more than one key :)
00:22:45 novica nakov: no you copied in your local folder
00:28:28 Tinashe Tapera: ssh-copy-id: https://www.ssh.com/academy/ssh/copy-id
00:41:20 Gus Lipkin: There’s a gui Docker image available for nginx that makes things easier (or more complicated depending on how you feel): https://nginxproxymanager.com/
00:43:09 Tinashe Tapera: This is really nice
00:51:45 Ahmed: pretty cool!