我是靠谱客的博主 欣喜大神,最近开发中收集的这篇文章主要介绍nginx 卸载SSL证书,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

nginx 卸载证书:

node1:/etc/nginx#cat nginx_http.conf
events
    {
        use epoll;
        worker_connections 65535;
        multi_accept on;
    }

http
    {
        include       mime.types;
        default_type  application/octet-stream;
        server_tokens off;
         log_format  main  '[$HOST]|[$realip_remote_addr]- $remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for" "$request_filename"';
     gzip on;
        access_log  logs/access.log  main;
##upstream backend 位置放错了, upstream位置应该放在http模块里面 但必须是在server模块的外面

 server
 {
 listen 192.168.137.2:8080;
 #server_name_in_redirect on;
 ssl on;
 ssl_certificate /etc/ss

最后

以上就是欣喜大神为你收集整理的nginx 卸载SSL证书的全部内容,希望文章能够帮你解决nginx 卸载SSL证书所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(60)

评论列表共有 0 条评论

立即
投稿
返回
顶部