choco 安裝 和 mkcert 本地https

2022-07-01 02:12:15 字數 4807 閱讀 1273

直接拷貝執行即可,注意需要管理員身份執行

cmd安裝:

@"%systemroot%\system32\windowspowershell\v1.0\powershell.exe" -noprofile -inputformat none -executionpolicy bypass -command "iex ((new-object system.net.webclient).downloadstring(''))" && set "path=%path%;%allusersprofile%\chocolatey\bin"
powershell安裝:

修改路徑後,需要新增安裝路徑下的bin目錄到path環境中。

commands

mkcert 是乙個使用 go 語言編寫的生成本地自簽證書的小程式,具有跨平台,使用簡單,支援多網域名稱,自動信任 ca 等一系列方便的特性可供本地開發時快速建立 https 環境使用。

此外,mkcert 已經推送至 homebrew, macports, linuxbrew, chocolatey, scoop 等包管理平台中,也可以直接借助對應的包管理平台安裝。如:

choco install mkcert
安裝成功後,應該可以使用 mkcert 命令了:

ps c:\users\abcfy\projects> mkcert

usage of mkcert:

$ mkcert -install

install the local ca in the system trust store.

$ mkcert example.org

generate "example.org.pem" and "example.org-key.pem".

generate "example.com+4.pem" and "example.com+4-key.pem".

$ mkcert "*.example.it"

generate "_wildcard.example.it.pem" and "_wildcard.example.it-key.pem".

$ mkcert -uninstall

uninstall the local ca (but do not delete it).

for more options, run "mkcert -help".

從上面自帶的幫助輸出來看,mkcert 已經給出了乙個基本的工作流,規避了繁雜的 openssl 命令,幾個簡單的引數就可以生成乙個本地可信的 https 證書了。更詳細的用法直接看官方文件就好。

將 ca 證書加入本地可信 ca

$ mkcert -install
僅僅這麼一條簡單的命令,就幫助我們將 mkcert 使用的根證書加入了本地可信 ca 中,以後由該 ca 簽發的證書在本地都是可信的。

在 windows 的可信 ca 列表可以找到該證書

生成自簽證書

生成自簽證書的命令十分簡單:

mkcert domain1 [domain2 [...]]
mkcert localhost 127.0.0.1 ::1

created a new certificate valid for the following names

centos 7 6版本PHP安裝和配置

1 安裝epel源 yum y install epel release 2 安裝remi源 yum y install 3 安裝yum源管理工具 yum y install yum utils 4 安裝php7.3 yum y install php73 php fpm php73 php cli...

本山和范偉!

本山和范偉都是我很喜歡的演員。他們之間有了矛盾,我發一點感言 范偉在電視上說,矛盾大約起於03年,因為他老婆說孩子需要好的教育,所以要來北京,本山不高興。大家雖然都沒說,但心裡已經有了隔閡。但後來還是合作了很多東西。後來本山要出演小品,范偉當時因為在研究劇本,手機關係,本山打過幾次。沒人接,便找某人...

automake安裝1 14 1版本

2.解壓縮automake 1.14.1.tar.gz 輸入命令 tar zxvf automake 1.14.1.tar.gz c opt 3.進入解壓縮後的目錄automake 1.14.1,輸入命令 cd opt automake 1.14.1 4.輸入命令 bootstrap.sh 5.配置...