23.解决https代理无css

发表于 linux 分类,标签:
server {
       listen 80;

       server_name zhzho.com;  #将localhost修改为您证书绑定的域名,例如:www.example.com。
       rewrite ^(.*)$ https://$server_name$1 permanent;   #将所有http请求通过rewrite重定向到https。
       client_max_body_size 1024m;
  }

# HTTPS server
  server {
  listen 443 ssl;   #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
  server_name localhost;  #将localhost修改为您证书绑定的域名,例如:www.example.com。
  root html;
  index index.html index.htm;
  ssl_certificate /opt/nginx/conf/ssl/zhque.com.crt;   #将domain name.pem替换成您证书的文件名。
  ssl_certificate_key /opt/nginx/conf/ssl/zhque.com.key;   #将domain name.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;   #使用该协议进行配置。
  ssl_prefer_server_ciphers on;

  location / {

      add_header Content-Security-Policy upgrade-insecure-requests; #这里这个就是处理https反向代理http时候静态资源的关
键
      proxy_set_header HOST $host;
      proxy_set_header X-Forwarded-Proto $scheme;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

      proxy_pass http://127.0.0.1:8088/;                                                                               
 }
 }


0 篇评论

发表我的评论