- 拥有一个通配符的域名证书,假如:*.xxx.com
- 域名解析到服务器IP
正常购买的证书是会给我们一个压缩包。
例如,我这边是解压到D:SSL,可以从解压的信息看出来,这个ssl证书是支持很多种web服务器
完整的nginx.conf文件
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; server { listen 81; server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ .php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ .php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param script_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # 测试多个子域名,test1.xxx.com #以下属性中,以ssl开头的属性表示与证书配置有关。 server { listen 443 ssl; #配置HTTPS的默认访问端口为443。 #如果未在此处配置HTTPS的默认访问端口,可能会造成Nginx无法启动。 #如果您使用Nginx 1.15.0及以上版本,请使用listen 443 ssl代替listen 443和ssl on。 #需要将yourdomain.com替换成证书绑定的域名。 server_name test1.xxx.com; root html; index index.html index.htm; #需要将cert-file-name.pem替换成已上传的证书文件的名称。 ssl_certificate D:/SSL/STAR.xxx.com/nginx/STAR.xxx.com.crt; #需要将cert-file-name.key替换成已上传的证书密钥文件的名称。 ssl_certificate_key D:/SSL/STAR.xxx.com/nginx/STAR.xxx.com.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #表示使用的加密套件的类型。 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #表示使用的TLS协议的类型。 ssl_prefer_server_ciphers on; location / { root html; #站点目录。 index index.html index.htm; } } # HTTPS server # 测试多个子域名,test2.xxx.com #以下属性中,以ssl开头的属性表示与证书配置有关。 server { listen 443 ssl; #配置HTTPS的默认访问端口为443。 #如果未在此处配置HTTPS的默认访问端口,可能会造成Nginx无法启动。 #如果您使用Nginx 1.15.0及以上版本,请使用listen 443 ssl代替listen 443和ssl on。 #需要将yourdomain.com替换成证书绑定的域名。 server_name test2.xxx.com; root html; index index.html index.htm; #需要将cert-file-name.pem替换成已上传的证书文件的名称。 ssl_certificate D:/SSL/STAR.xxx.com/nginx/STAR.xxx.com.crt; #需要将cert-file-name.key替换成已上传的证书密钥文件的名称。 ssl_certificate_key D:/SSL/STAR.xxx.com/nginx/STAR.xxx.com.key; ssl_session_timeout 5m; ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4; #表示使用的加密套件的类型。 ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #表示使用的TLS协议的类型。 ssl_prefer_server_ciphers on; location / { root html; #站点目录。 index index.html index.htm; } } }
关键参数说明:
这一步是必要的,每次修改nginx.conf文件都需要重载,否则配置信息无法生效
C:nginx-1.20.0>nginx.exe -s reload
接下来,检查nginx是否成功启动
C:nginx-1.20.0>tasklist /fi "imagename eq nginx.exe"
如图所示,则表示成功
假如不成功,可以去看看nginx的错误日志提示了什么
测试测试https://test1.xxx.com,预期效果是显示nginx默认的主页
成功,在验证下https://test2.xxx.com,预期效果也是显示nginx默认主页
好了,都成功了,大概多域名就是这么个过程
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)