0
私が現在使用されているnginx.confが含まれていることを確認しました:nginxの設定ファイルの情報なし
user nginx;
worker_processes 1;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include /etc/nginx/conf.d/*.conf;
を(ディレクトリ/etc/nginx/conf.dでのみファイル)をdefault.congながら含まれています:
server {
listen 80;
server_name localhost;
location/{
root /usr/share/nginx/html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
私はsslに関連するものはありません。任意のページを表示しません
www.example.com
を書いしかし
、私は自分のドメインに移動し、。
https://www.example.com
に行くことページを示しているが。
これはどのように可能ですか? SSLを欺くためにドメインを指すことができる別の場所がありますか?おそらくネットワークレベルですか?