会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
walkersss
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
···
39
下一页
2024年12月27日
DNS解析 电子邮件安全协议 DMACR
摘要: 什么是 DMARC 记录? DMARC 记录是一条发布在域名上面的,在 DNS 中的 TXT 记录,位于 _dmarc.yourdomain.com,在这里 “yourdomain.com” 是实际的域名或者子域名。它告诉接收邮件的服务器当邮件在 DMARC 验证中失败时,应该如何处理,并且应该把邮
阅读全文
posted @ 2024-12-27 17:05 walkersss
阅读(279)
评论(0)
推荐(0)
2024年12月13日
nginx-docker.yml
摘要: version: '3'services: nginx: image: nginx:latest container_name: nginx1 restart: always ports: - "80:80" - "7080:7080" - "1180:1180" volumes: - /usr/l
阅读全文
posted @ 2024-12-13 18:03 walkersss
阅读(14)
评论(0)
推荐(0)
2024年12月11日
Linux 查自己的公网IP地址
摘要: curl ip.me curl cip.cc
阅读全文
posted @ 2024-12-11 15:53 walkersss
阅读(19)
评论(0)
推荐(0)
2024年12月6日
Rabbitmq 开机启动脚本
摘要: vi /etc/init.d/rabbitmq #!/bin/bash## chkconfig: 2345 80 05# description: rabbitmq # processname: rabbitmq #RabbitMQ安装目录RABBITMQ_HOME=/usr/local/rabbi
阅读全文
posted @ 2024-12-06 15:47 walkersss
阅读(30)
评论(0)
推荐(0)
nacos 加入开机启动
摘要: cd /usr/lib/systemd/system/vi nacos.service [Unit]Description=nacosAfter=network.target [Service]Type=forkingExecStart=/usr/local/nacos/bin/startup.sh
阅读全文
posted @ 2024-12-06 15:44 walkersss
阅读(137)
评论(0)
推荐(0)
2024年11月27日
firewalld 放开 关闭端口
摘要: firewalld 放开 关闭端口:systemctl start firewalldsystemctl enable firewalld firewall-cmd --permanent --add-port=8080/tcpfirewall-cmd --reloadfirewall-cmd --
阅读全文
posted @ 2024-11-27 10:59 walkersss
阅读(68)
评论(0)
推荐(0)
2024年11月14日
nginx 替换路径、域名 带传参跳转:
摘要: nginx 替换路径、域名 带传参跳转: server { ........ location /h5/netShop/ { if ($host = "app.abcd.com") { rewrite ^/h5/netShop/(.*)$ https://uatapp.abcd.com/h5/sha
阅读全文
posted @ 2024-11-14 21:53 walkersss
阅读(1257)
评论(0)
推荐(0)
2024年10月30日
iptables 重启后ftp 策略失效的问题
摘要: 编辑 /etc/sysconfig/iptables-config :IPTABLES_MODULES="ip_conntrack_ftp"IPTABLES_MODULES="ip_nat_ftp"把需要加载的模块加入,无论重启系统还是 iptables 但 ftp 模块始终还是加载的。就这样搞定,
阅读全文
posted @ 2024-10-30 12:22 walkersss
阅读(29)
评论(0)
推荐(0)
pip install xxxx Could not fetch URL https://pypi.douban.com/simple/pip/
摘要: Could not fetch URL https://pypi.douban.com/simple/pip/: There was a problem confirming the ssl certificate: HTTPSConnectionPool(host='pypi.douban.com
阅读全文
posted @ 2024-10-30 10:27 walkersss
阅读(124)
评论(0)
推荐(0)
2024年10月18日
nginx静态资源转发,去掉前缀
摘要: nginx静态资源转发,去掉前缀要在Nginx中配置静态资源转发并去掉前缀,可以使用location指令和rewrite规则。以下是一个示例配置,它将所有/static/开头的请求转发到相应的静态资源目录,并去掉/static/前缀。 server { listen 80; server_name
阅读全文
posted @ 2024-10-18 15:11 walkersss
阅读(1061)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
39
下一页
公告