1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.id/common/acme.sh.md
Reinhart Previano Koentjoro 2ee54b9032
pages.id/*: add and improve Indonesian translation (#11640)
* 7z, 7za, 7zr: update Indonesian translation

* common: imperative mood on Indonesian translation

* linux, osx, windows: imperative mood on Indonesian translation

* common, linux: add Indonesian translation

* powershell, pwsh: add Indonesian translation

* common: add Indonesian translation

* gcc: use standard file path template

* Update pages.id/common/gcc.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.id/common/gcc.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.id/common/7za.md

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Update pages.id/common/gcc.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update pages.id/common/7za.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update 7za.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update gcc.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* git-commit: update Indonesian translation

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-12-15 08:49:58 +07:00

1.5 KiB

acme.sh

Sebuah shell script yang mengimplementasikan ACME client protocol (pembuat sertifikat HTTPS), alternatif dari certbot. Lihat juga: acme.sh dns. Informasi lebih lanjut: https://github.com/acmesh-official/acme.sh.

  • Terbitkan sertifikat baru dan pasang pada webroot secara langsung:

acme.sh --issue --domain {{example.com}} --webroot {{/jalan/menuju/webroot}}

  • Terbitkan sertifikat untuk domain majemuk, menggunakan mode verifikasi mandiri (standalone) pada port 80:

acme.sh --issue --standalone --domain {{example.com}} --domain {{www.example.com}}

  • Terbitkan sertifikat menggunakan mode verifikasi mandiri berbasis TLS pada port 443:

acme.sh --issue --alpn --domain {{example.com}}

  • Terbitkan sertifikat dengan konfigurasi server Nginx untuk memasangnya:

acme.sh --issue --nginx --domain {{example.com}}

  • Terbitkan sertifikat dengan konfigurasi server Apache untuk memasangnya:

acme.sh --issue --apache --domain {{example.com}}

acme.sh --issue --dns {{api_dns}} --domain {{*.example.com}}

  • Pasang sertifikat ke dalam direktori tertentu (dapat berguna untuk proses pemutakhiran otomatis):

acme.sh --install-cert -d {{example.com}} --key-file {{/jalan/menuju/example.com.key}} --fullchain-file {{/jalan/menuju/example.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}