nginx 反向代理https

nginx 反向代理https

原來我用vertx建立了一個https apiserver,想着用nginx反向代理一下。證書是阿里雲上免費一年的。html

後來發現nginx要反向代理https本身也必須是https。這樣我索性把vertx的ssl去掉了。直接用nginx的。java

個人nginx的配置文件在/etc/nginx,能夠用whereis nginx查看。nginx

從阿里雲下載證書for nginxcentos

 

1.在目錄下建立cert目錄,而且將下載的所有文件拷貝到cert目錄中。

2.修改配置文件api

[java]  view plain  copy
 
  1. server {  
  2.       listen       443 ssl;  
  3.       server_name  www.zyyapp.com;  
  4.   ssl_certificate   cert/2146842898821.pem;  
  5.   ssl_certificate_key  cert/214684289890721.key;  
  6.   ssl_session_timeout 5m;  
  7.   ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;  
  8.   ssl_protocols TLSv1 TLSv1.1 TLSv1.2;  
  9.   ssl_prefer_server_ciphers on;  
  10.   
  11.       location / {  
  12.   #        root   html;  
  13.   #        index  index.html index.htm;  
  14.   
  15.           proxy_pass  https://127.0.0.1:8080;  
  16.           ### force timeouts if one of backend is died ##  
  17.           proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;  
  18.   
  19.           ### Set headers ####  
  20.           proxy_set_header Host $host;  
  21.           proxy_set_header X-Real-IP $remote_addr;  
  22.           proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  
  23.   
  24.           ### Most PHP, Python, Rails, Java App can use this header ###  
  25.           proxy_set_header X-Forwarded-Proto https;  
  26.   
  27.           ### By default we don't want to redirect it ####  
  28.           proxy_redirect     off;  
  29.   
  30.       }  
  31.   }  

3.nginx -t 查看是否正確session

4.若是是centos 7的話能夠systemctl restart nginx 重啓nginxapp

相關文章
相關標籤/搜索