vps交流

求教一下,安装SSL证书之后怎么防止用IP查看证书看到域名呢


??
ip上用一个假证书。

hxuf 发表于 2022-1-19 09:19
ip上用一个假证书。

这的确是一个方法,还有其他方法吗?

IP换另外一个证书绑定
本帖最后由 aboutyj 于 2022-1-19 09:38 编辑

建一个default.conf配置,或者直接在nginx.conf的http {} 里面添加下面这样的
SSL证书直接自己自签一个

  1. http {
  2. …#此处省略其他内容
  3. include xxxx/*.conf;
  4. server {
  5.     listen 80 default;
  6.     server_name _;
  7.     access_log off;
  8.     return 444;
  9. }
  10. server {
  11.     listen 443 default ssl;
  12.     server_name _;
  13.     access_log off;
  14.     ssl_certificate your_cert_path/your_cert.crt;
  15.     ssl_certificate_key your_cert_path/your_cert.key;
  16.     return 444;
  17. }
  18. }

复制代码