「*nix操作」修訂間的差異

出自Tan Kian-ting的維基
跳至導覽 跳至搜尋
行 35: 行 35:
https://certbot.eff.org/instructions?ws=nginx&os=ubuntufocal
https://certbot.eff.org/instructions?ws=nginx&os=ubuntufocal


{{#related:Another test page}}


[[category:資訊]]
[[category:資訊]]

於 2022年11月27日 (日) 20:02 的修訂

BSD 加入到 Grub2

以系統管理員身份編輯

/etc/grub.d/40_custom

,加入:

menuentry "BSD" {
set root='(hd1,2)'
kfreebsd /boot/loader
}

(hdx,y) => x,y 從0起算,指第x顆硬碟的第y分割區

參考來源:FreeBSD論壇


Nginx 強制 SSL

server {
    listen      80;
    server_name signup.mysite.com;
    return 301 https://$server_name$request_uri;
}

參考 https://serverfault.com/a/424016 by 030 under CC BY-SA 3.0

使用 certbot 含自動設定 nginx

apt-get install python3-certbot-nginx

certbot --nginx

https://certbot.eff.org/instructions?ws=nginx&os=ubuntufocal

{{#related:Another test page}}