我一直关注this tutorial将SSH认证添加到我的网站。但目前这种方法does not work for the time-being due to a security flaw, so here is the alternate method。我尝试实施备用代码粘贴:sudo certbot --authenticator webroot --webroot-path <path to served directory> --installer nginx -d <domain>
但是我不确定要放入<path to served directory>
的内容。
是服务目录的#34;路径&#34; nginx配置?它看起来像这样:etc/nginx/sites-available/<projectname>
?
答案 0 :(得分:2)
你可能已经尝试过这个,但我发现这个有用,至少在发布更新之前是这样的:
sudo certbot --authenticator standalone --installer nginx -d mydomain.com -d www.mydomain2.com --pre-hook“service nginx stop”--post-hook“service nginx start”
答案 1 :(得分:0)