nginx_域名ssl部署

nginx_域名ssl部署


安装Nginx

nginx 默认安装路径的:/usr/local/nginx

编写一个前端程序 打包 放到 /usr/local/nginx/html 下面

配置nginx

进入nginx conf 目录 把你那个域名ssl 证书直接拷贝到 conf 目录下面
接下来就是编写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 {
        #监听443端口  
              listen 443 ssl;                                     # 监听443端口 
              server_name itveteranjie.co www.itveteranjie.co;    # 你的域名
              ssl_certificate itveteranjiewwwissa.co_bundle.crt;  # crt 证书
              ssl_certificate_key itveteranjie.co.key;            # key
              ssl_session_timeout 5m;  
              ssl_protocols TLSv1.2 TLSv1.3; 
               #请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
              ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
              ssl_prefer_server_ciphers on;
        
              #access_log  logs/host.access.log  main;
                                                                                    
              location / {
                     root   html/dist;                           # 这个就是你前端大好包的地方
                     index  index.html index.htm;
                                
               }
             error_page   500 502 503 504  /50x.html;
              location = /50x.html {
                  root   html;
               }
      }
   
    server {
        listen       80;                                     # 监听 80端口
       # server_name  110.40.207.142;
        server_name itveteranjie.co www.itveteranjie.co;     # 域名
        return 301 https://$host$request_uri;                # 如果访问80 端口 他会去转发 到443 

        #charset koi8-r;

        #access_log  logs/host.access.log  main;


        #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
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    }

}

重启nginx

/usr/local/nginx/sbin/nginx -s reload -c /usr/local/nginx/conf/nginx.conf 

注意:如果nginx 配置 ssl 报错信息 :
nginx: [emerg] the “ssl” parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:37
解决方案:
输入命令 /usr/local/nginx/sbin/nginx -V 查看nginx

原来的是这样的 –prefix=/usr/local/nginx --with-http_stub_status_module

执行命令:而我们需要改成  
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
 
 在输入 make


然后备份原有已安装好的nginx

cp /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.bak


然后将刚刚编译好的nginx覆盖掉原有的nginx

cp ./objs/nginx /usr/local/nginx/sbin/


然后启动nginx,仍可以通过命令查看是否已经加入成功

/usr/local/nginx/sbin/nginx -V


如果还还是不行重启服务器 就行了~~

最后看看效果吧!! 链接

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

杰哥力挽狂澜

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值