Skip to content

Instantly share code, notes, and snippets.

View jueti's full-sized avatar
🏠
Working from home

Jason Yang jueti

🏠
Working from home
View GitHub Profile
202.96.134.133
202.96.128.166
202.96.128.86
@jueti
jueti / ntp-server.txt
Created June 9, 2024 02:12
ntp server
ntp.ntsc.ac.cn
cn.ntp.org.cn
edu.ntp.org.cn
ntp1.aliyun.com
ntp2.aliyun.com
ntp3.aliyun.com
ntp4.aliyun.com
ntp5.aliyun.com
ntp6.aliyun.com
ntp7.aliyun.com
@jueti
jueti / config.ini
Last active June 4, 2024 09:46
custom subconverter rules
;https://gist.githubusercontent.com/jueti/b9136422a3aa771f4ab067f1b670ba2b/raw/config
;From: https://github.com/ACL4SSR/ACL4SSR/blob/master/Clash/config/ACL4SSR_Online_Full.ini
;Commit: dc433e8 2024年5月10日
[custom]
;ruleset=🛑 广告拦截,https://gist.githubusercontent.com/jueti/b9136422a3aa771f4ab067f1b670ba2b/raw/reject
ruleset=♻️ 自动选择,https://gist.githubusercontent.com/jueti/b9136422a3aa771f4ab067f1b670ba2b/raw/proxy
ruleset=🎯 全球直连,clash-classic:https://gist.githubusercontent.com/jueti/b9136422a3aa771f4ab067f1b670ba2b/raw/direct-payload,3600
ruleset=🇭🇰 香港节点,https://gist.githubusercontent.com/jueti/b9136422a3aa771f4ab067f1b670ba2b/raw/hongkong
ruleset=🇸🇬 狮城节点,https://gist.githubusercontent.com/jueti/b9136422a3aa771f4ab067f1b670ba2b/raw/singapore
@jueti
jueti / GWF_notion.txt
Created January 25, 2021 13:34
GWF: notion.so
||notion.so^

Keybase proof

I hereby claim:

  • I am jueti on github.
  • I am jueti (https://keybase.io/jueti) on keybase.
  • I have a public key ASCAClhqN8jglXN-1J3UqCAbByckz40KUycC3F9YSm2kFQo

To claim this, I am signing this object:

@jueti
jueti / clean.bat
Last active February 14, 2020 07:31
静态顺序表
@echo off
chcp 65001 >nul 2>&1
pushd %~dp0
del *obj *.exe
popd
@jueti
jueti / autoindex.html
Last active December 4, 2018 03:25
[Nginx 自定义目录索引样式] 将autoindex.html放于根目录,然后修改default.con #nginx
<!-- autoindex for nginx, see https://phuslu.github.io -->
<script>
if (this.location.href.slice(-1) === "/") {
var website_title = ''
var datetime_format = '%d-%b-%Y %H:%M'
var show_readme_md = true
var max_name_length = 50
var dom = {
element: null,
@jueti
jueti / default.conf
Last active December 4, 2018 03:23
[Nginx 禁用单个目录的目录索引] "/"开启目录索引,"/Chapter 3/"关闭目录索引,但可以访问目录下的文件 #nginx
server {
listen 80;
server_name localhost;
gzip on;
gzip_min_length 1k;
gzip_comp_level 6;
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
location / {
@jueti
jueti / default.conf
Last active December 4, 2018 02:40
[Nginx & FRP共用80端口] 方案二:主域名和三级泛主域名都位于本地 #nginx #frp
server {
listen 80;
server_name *.frp.jasonyang.xin;
location / {
resolver 114.114.114.114 8.8.8.8;
proxy_pass $scheme://$host:7000;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@jueti
jueti / default.conf
Last active December 4, 2018 01:54
[Nginx & FRP 共用80端口] 方案一:主域名的站点位于服务器,三级泛域名位于本地 #nginx #frp
server {
listen 80;
server_name www.jasonyang.xin jasonyang.xin;
return 301 https://www.jasonyang.xin$request_uri;
}
server {
listen 443 ssl http2;
server_name www.jasonyang.xin jasonyang.xin;