6 Star 12 Fork 16

Gitee 极速下载/jsproxy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/EtherDream/jsproxy
克隆/下载
www.conf 1.23 KB
一键复制 编辑 原始数据 按行查看 历史
zjcqoo 提交于 2019-07-10 21:18 . 主要更新:
#
# 提供 www 目录的静态资源服务
#
include mime.types;
sendfile on;
charset utf-8;
# 安装步骤多,节省的流量不多,暂时不开
# brotli_static on;
# gzip_static on;
gzip on;
log_not_found off;
error_page 404 = /404.html;
location = /404.html {
internal;
root ../www;
# http 重定向到 https(忽略 localhost 或 IP 访问)
access_by_lua_block {
if ngx.var.scheme == 'https' then
return
end
local host = ngx.var.host
if host == 'localhost' then
return
end
if ngx.re.match(host, [[^\d+\.\d+\.\d+\.\d+$]]) then
return
end
local url = host .. ':8443' .. ngx.var.request_uri
ngx.redirect('https://' .. url, 301)
}
# 永久重定向申请: https://hstspreload.org/
more_set_headers
'strict-transport-security: max-age=99999999; includeSubDomains; preload'
;
}
location / {
access_log logs/access.log log_www buffer=64k flush=1s;
root ../www;
index 404.html;
}
# HTTPS 证书申请验证
location /.well-known/acme-challenge/ {
access_log logs/acme.log combined;
root ../acme;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mirrors/jsproxy.git
git@gitee.com:mirrors/jsproxy.git
mirrors
jsproxy
jsproxy
master

搜索帮助