首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,136 阅读
2
Emby客户端IOS破解
6,000 阅读
3
白嫖Emby
5,983 阅读
4
《吞食天地1》金手指代码
5,308 阅读
5
破解emby-server
4,255 阅读
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
累计撰写
377
篇文章
累计收到
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
页面
关于
壁纸
直播
留言
友链
统计
搜索到
377
篇与
moonjerx
的结果
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日
86 阅读
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 点赞
2021-07-11
Emby破解和刮削相关域名
mb3admin.com 负责激活服务端与客户端 www.mb3admin.com 插件服务器加速(仅服务端) embydata.com Emby下载服务器加速(仅服务端) api.themoviedb.org 加速TMDB的刮削(仅服务端) image.tmdb.org 加速TMDB的图片获取(仅服务端) assets.fanart.tv 加速FanArt资源(仅服务端) webservice.fanart.tv 加速FanArt刮削(仅服务端) api.opensubtitles.org 加速OpenSubtitles获取(仅服务端)测速: https://tool.chinaz.com/speedworld.aspx54.230.51.112 api.themoviedb.org 13.225.149.45 image.tmdb.orgecho "54.230.51.112 api.themoviedb.org" /etc/hosts echo "13.225.149.45 image.tmdb.org" /etc/hosts
2021年07月11日
1,407 阅读
0 评论
1 点赞
2021-07-10
docker拉取镜像报错
环境虚拟机CentOS7安装好docker之后拉取emby镜像报错:[root@localhost ~]# docker pull yukinococo/emby_crack Using default tag: latest Error response from daemon: Head https://registry-1.docker.io/v2/yukinococo/emby_crack/manifests/latest: read tcp 112.118.3.11:55128->34.238.187.50:443: read: connection reset by peer [root@localhost ~]# vim /etc/resolv.conf解决方案:dig命令报错[root@localhost ~]# dig @114.114.114.114 registry-1.docker.io -bash: dig: command not found [root@localhost ~]# yum -y install bind-utils[root@localhost ~]# dig @114.114.114.114 registry-1.docker.io ; <<>> DiG 9.11.4-P2-RedHat-9.11.4-26.P2.el7_9.5 <<>> @114.114.114.114 registry-1.docker.io ; (1 server found) ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 50078 ;; flags: qr rd ra; QUERY: 1, ANSWER: 8, AUTHORITY: 0, ADDITIONAL: 1 ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 512 ;; QUESTION SECTION: ;registry-1.docker.io. IN A ;; ANSWER SECTION: registry-1.docker.io. 33 IN A 35.169.249.115 registry-1.docker.io. 33 IN A 54.161.109.204 registry-1.docker.io. 33 IN A 3.224.96.239 registry-1.docker.io. 33 IN A 52.72.232.213 registry-1.docker.io. 33 IN A 52.55.168.20 registry-1.docker.io. 33 IN A 54.165.240.225 registry-1.docker.io. 33 IN A 34.197.211.151 registry-1.docker.io. 33 IN A 54.152.28.6 ;; Query time: 27 msec ;; SERVER: 114.114.114.114#53(114.114.114.114) ;; WHEN: Sat Jul 10 11:59:21 CST 2021 ;; MSG SIZE rcvd: 177 [root@localhost ~]# echo "54.165.240.225 registry-1.docker.io" >> /etc/hosts
2021年07月10日
172 阅读
0 评论
0 点赞
1
...
73
74
75
76
您的IP: