58.http代理无css

发表于 linux 分类,标签:
# HTTPS server
  server {
       listen 80;
#       listen 443 ssl;   #SSL协议访问端口号为443。此处如未添加ssl,可能会造成Nginx无法启动。
       server_name m.leiuk.com;  #将localhost修改为您证书绑定的域名,例如:www.example.com。
#       rewrite ^(.*)$ https://$server_name$1 permanent;   #将所有http请求通过rewrite重定向到https。
       client_max_body_size 1024m;

  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://192.168.192.23;
  }


   location ~ .* {
       proxy_pass http://192.168.192.23;
       proxy_set_header Host $http_host;
       proxy_set_header X-Real-IP $remote_addr;
       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}


0 篇评论

发表我的评论