宝塔新建反向代理站点
此篇文档为基础性补充文档,如果你会使用则无需阅读
首先打开宝塔新建静态网站
由于宝塔不支持第一个域名添加泛域名,所以添加两个域名
aaa.com
*.aaa.comPHP版本选择:纯静态
签发SSL证书
点击 SSL
选择DNS验证
域名全选
点击申请证书,然后根据提示进行添加DNS解析,申请证书
添加反向代理
点击反向代理
点击添加反向代理
在目标URL填写你原本的v2b站点地址
点击确定
允许跨域
点击配置文件
按图添加允许跨域的代码然后保存
# 允许所有域进行跨域请求
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, DELETE, PUT';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
# 预检请求
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS, DELETE, PUT';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
至此配置完毕。
License:
私有