3

(Windows で) openssl を使用して、(テスト トライアル) 証明書を使用するための csr を作成しています。これまでにこれを行ったことがなく、質問があります。秘密鍵を作成した後、csr ファイルを作成すると、個人情報を提供するよう求められます。尋ねられることの 1 つは、ドメイン名を意味する Common Name です。私は現在、ローカルホストからのみ実行しています。https://サイトの作り方を練習中です。

質問: localhost:82 のような方法で有効な csr を作成できますか? そうでない場合は、どうすればよいですか?

4

1 に答える 1

5

簡単な答え:hostsファイル (C:\Windows\System32\drivers\etc\hosts) を開き、派手なドメイン名を考え出します。

# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host

# localhost name resolution is handled within DNS itself.
#       ::1             localhost
127.0.0.1       localhost

127.0.0.1       example.com  # <<< Your fancy domain goes here !!!

次に、HTTPS リクエストを に提供するように Web サーバーに指示しますexample.com

于 2013-01-13T23:08:50.337 に答える