首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,036 阅读
2
白嫖Emby
5,772 阅读
3
Emby客户端IOS破解
5,771 阅读
4
《吞食天地1》金手指代码
4,697 阅读
5
破解emby-server
4,041 阅读
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
累计撰写
370
篇文章
累计收到
459
条评论
首页
栏目
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
页面
关于
壁纸
直播
留言
友链
统计
搜索到
370
篇与
moonjerx
的结果
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日
292 阅读
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,394 阅读
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日
161 阅读
0 评论
0 点赞
2021-07-09
群晖套件版Emby破解脚本
#信任证书 curl "https://neko.re/wp-content/uploads/simple-file-list/EmbyCA.pem" >> /etc/ssl/certs/ca-certificates.crt #删除原有mb3admin hosts记录 sed -i 's/.*mb3admin\.com//' /etc/hosts #添加新的mb3admin hosts记录 echo -e "119.28.51.30 mb3admin.com\n119.28.51.30 www.mb3admin.com" >> /etc/hosts
2021年07月09日
1,262 阅读
0 评论
0 点赞
2021-07-08
GL-iNet路由MT1300在使用OpenVPN时警告提示
NOTE: the current --script-security setting may allow this configuration to call user-defined scripts TCP/UDP: Preserving recently used remote address: [AF_INET]27.xx.xx.xx:11217 UDP link local (bound): [AF_INET][undef UDP link remote: [AF_INET]27.xx.xx.xx:11217 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this
2021年07月08日
246 阅读
0 评论
0 点赞
1
...
72
73
74
您的IP: