首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,212 阅读
2
Emby客户端IOS破解
6,065 阅读
3
白嫖Emby
6,054 阅读
4
《吞食天地1》金手指代码
5,763 阅读
5
破解emby-server
4,315 阅读
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
登录
Search
标签搜索
ubuntu
mysql
openwrt
zerotier
springboot
centos
openvpn
jdk
吞食天地2
synology
spring
idea
windows11
吞食天地1
transmission
google-play
Japanese
xcode
群晖
kiftd
MoonjerX
累计撰写
379
篇文章
累计收到
465
条评论
首页
栏目
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
页面
关于
壁纸
直播
留言
友链
统计
搜索到
379
篇与
moonjerx
的结果
2021-07-14
诛仙自架设服务端
怀旧{dplayer src="https://mxlychee.moonjer.com:1992/uploads/big/2920eec4dfdb312a611fa9098b815b43.mp4"/}诛仙自架设服务端和pc连接教程 b站视频教程 准备材料 【诛仙】碧瑶 伤心花 【原创编舞】 曾经让我沉迷的诛仙各地图背景音乐(部分) 【诛仙怀旧】凌晨一点,经典的老河阳城 诛仙2·时光之书 CG 碧瑶 伤心花 【原创编舞】 十八年,等一人”丨碧瑶521粉丝十周年庆 伤心花·念碧瑶 真失踪人口归来~原创半编舞 【紫颜】 甜到你 ❤ 里呀 ~【霜降】
2021年07月14日
155 阅读
0 评论
0 点赞
2021-07-13
迅雷下载常用地址
因网络、时间、地点、会员差异下载速度或许会有所波动app推荐下载链接备注迅雷apphttps://www.xunlei.com安卓版可以远程添加群晖设备,手机创建远程任务到群晖(ios暂时不支持绑定nas设备)嗖嗖虾https://m.qqtn.com/mipq/662094.html磁力搜索app,纯净,无广告,配合迅雷app食用效果绝佳,不过只有安卓版表格网站推荐网址链接备注bt之家https://88btbtt.com/啥都有bt之家https://btbtt17.com/forum-index-fid-951.htm-八爪鱼磁力搜https://xn--pro-kj7f842g.com 悠悠MP4https://www.uump4.net老牌视频下载站电影天堂https://www.dydytt.net/index.htm一般都是最热资源,下载速度最快老电影https://www.bd2020.com一般都是最热资源,下载速度最快网站推荐网址链接备注音范丝http://www.yinfans.me蓝光高清影视资源BT大雄https://www.btdx8.com 磁力熊https://www.cilixiong.com 聚BThttps://jubt.best/cn/index.html各种磁力搜索404导航https://www.404dh.icu啥都有不求人导航https://video.bqrdh.com啥都有电影在线https://ddrk.me啥都有好4Khttps://www.hao4k.cn啥都有西门美剧http://www.xixmtv.com/ 大咖美剧https://www.dacaer.com/ BT部落天堂https://www.btbuluo.net/ 迅雷电影天堂https://www.xl720.com/
2021年07月13日
396 阅读
0 评论
0 点赞
2021-07-12
nginx重定向尝试
限定指定IP请求重定向所有非192.168.0.*网段的IP到百度if ( $http_x_forwarded_for !~ 192\.168\.0\..* ){ rewrite ^(.*)$ https://www.baidu.com; }或者:非这两个IP,返回404if ( $http_x_forwarded_for !~* "192.168.0.59|192.168.0.45") { return 404; }nginx重定向尝试location ^~ /v1{ root /www/wwwroot/front_server/silk/; index index.html; } location ^~ /v2{ alias /www/wwwroot/front_server/silk/v2/; index index.html; } location ^~ /{ #匹配成功后跳转,执行永久301跳转 return 301 https://$server_name$request_uri/v1/; rewrite ^(.*)$ http://$host:1992$1/v1/ permanent; #可以重定向,浏览器地址为https://a.site.com:1992 rewrite ^(.*)$ https://a.site.com:1992$1 permanent; #可以重定向,浏览器地址为https://a.site.com:1992 return 301 https://a.site.com:1992$request_uri; }
2021年07月12日
155 阅读
0 评论
0 点赞
2021-07-12
技术贴收藏
搭建个人服务器(NAS/DeskMini)
2021年07月12日
87 阅读
0 评论
0 点赞
2021-07-11
Nginx反代配置
绝对路径. proxy_pass http://127.0.0.1:8080; 后面8080没有 “/” server { listen 80; server_name www.test.com; # 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务. # 实际请求代理服务器路径为 " 127.0.0.1:8080/proxy/aaa/bbb.text " location /proxy/ { proxy_pass http://127.0.0.1:8080; } }相对路径. proxy_pass http://127.0.0.1:8080; 后面8080有 “/” server { listen 80; server_name www.test.com; # 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务. # 实际请求代理服务器路径为 " 127.0.0.1:8080/aaa/bbb.text " location /proxy/ { proxy_pass http://127.0.0.1:8080/; } }proxy_pass http://127.0.0.1:8080/static; 后面static没有 “/” server { listen 80; server_name www.test.com; # 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务. # 实际请求代理服务器路径为 " 127.0.0.1:8080/staticaaa/bbb.text " location /proxy/ { proxy_pass http://127.0.0.1:8080/static; } }proxy_pass http://127.0.0.1:8080/static; 后面static有 “/” server { listen 80; server_name www.test.com; # 当访问 http://test.yeguxin.top/proxy/aaa/bbb.text时,nginx匹配到 /proxy/路径,把请求转发给127.0.0.1:8080服务. # 实际请求代理服务器路径为 " 127.0.0.1:8080/static/aaa/bbb.text " location /proxy/ { proxy_pass http://127.0.0.1:8080/static/; } }
2021年07月11日
306 阅读
0 评论
0 点赞
1
...
73
74
75
76
您的IP: