Web開発者として、私は私のコンピュータにローカルに多くのウェブサイトを持っています。 HTTPS経由でアクセスできるように設定しようとしています。
これは私のhttp設定の仮想ホスト部分です。
<VirtualHost *:80>
ServerName test.local
ServerAlias *.local
VirtualDocumentRoot /home/jonathan/Sites/%-2/public_html
CustomLog /home/jonathan/Sites/access.log vhost_combined
ErrorLog /home/jonathan/Sites/error.log
</VirtualHost>
<VirtualHost *:443>
ServerName test.local
ServerAlias *.local
VirtualDocumentRoot /home/jonathan/Sites/%-2/public_html
CustomLog /home/jonathan/Sites/access.log vhost_combined
ErrorLog /home/jonathan/Sites/error.log
SSLEngine On
SSLCertificateFile /home/jonathan/Sites/public.cert
SSLCertificateKeyFile /home/jonathan/Sites/private.key
</VirtualHost>
私が行くときにサービスをhttp://dotjs.local
受けるので、これはうまくいくと思います。index.html
/home/jonathan/Sites/dotjs/public_html/
に移動するとhttps://dotjs.local
警告が表示されますが、無視すると同じファイルも表示されます。
就職証明書の取得に問題があります。
私は(これに従った)[https://blog.celogeek.com/201209/209/how-to-create-a-self-signed-wildcard-certificate/]私の仮想ホストの構成に応じて、ファイル名をpublic.certとprivate.keyとして指定したことを除いて、証明書の作成に関するガイドです。
次のコマンドを使用して証明書を生成する場合:openssl req -new -x509 -nodes -sha1 -days 3650 -key private.key > public.cert
次のように入力しました(一部の個人情報は非表示です)。
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:GB
State or Province Name (full name) [Some-State]:{My county}
Locality Name (eg, city) []:{My city}
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Blar
Organizational Unit Name (eg, section) []:Blar
Common Name (e.g. server FQDN or YOUR name) []:*.local
Email Address []:{My email address}