找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 468|回复: 0

nginx反代hostloc.com的配置

[复制链接]

28

主题

1

回帖

148

积分

管理员

积分
148
发表于 2024-6-16 22:45:45 | 显示全部楼层 |阅读模式


hostloc.com是一个人气较高的中文主机、VPS、服务器交流论坛

不过可惜被官方认证了,所以无法直接访问
本文介绍了通过Nginx反代实现访问的目的

  1. #PROXY-START/

  2. location ^~ /
  3. {
  4.     proxy_pass https://hostloc.com;
  5.     proxy_set_header Referer "https://hostloc.com/";
  6.     proxy_set_header Host hostloc.com;
  7.     proxy_set_header X-Real-IP $remote_addr;
  8.     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  9.     proxy_set_header REMOTE-HOST $remote_addr;

  10.     add_header X-Cache $upstream_cache_status;

  11.     #Set Nginx Cache

  12.     proxy_set_header Accept-Encoding "";
  13.     add_header Access-Control-Allow-Origin *;
  14.     sub_filter_types text/css text/xml text/javascript application/javascript application/json;
  15.     sub_filter '"//' '"https://';
  16.         sub_filter "hostloc.com" "你的域";
  17.         sub_filter "www.hostloc.com" "你的域";
  18.         sub_filter "主机" "煮鸡";
  19.     sub_filter "用户组: 论坛元老" "用户组: 管理员";
  20.     sub_filter_once off;
  21.    
  22.    
  23.     set $static_fileCz06CWLw 0;
  24.     if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
  25.     {
  26.             set $static_fileCz06CWLw 1;
  27.             expires 12h;
  28.         }
  29.     if ( $static_fileCz06CWLw = 0 )
  30.     {
  31.     add_header Cache-Control no-cache;
  32.     }
  33. }

  34. #PROXY-END/

复制代码
把以上配置放到nginx的配置文件中重启后即可。

文章来源:nginx反代hostloc.com的配置 - 风之翼灵'Blog (fungj.com)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|整天BBB

GMT+8, 2025-1-10 13:53 , Processed in 0.079813 second(s), 19 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表