摘要: ```nginx location / { try_files $uri $uri/ /index.html; } ``` 阅读全文
posted @ 2023-05-24 16:35 pmm-cnblogs 阅读(14) 评论(0) 推荐(0)
摘要: 设置代理 git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' 查看代理 git config --global --get 阅读全文
posted @ 2023-04-18 07:35 pmm-cnblogs 阅读(64) 评论(0) 推荐(0)
摘要: 添加新用户 # 允许本地 IP 访问 localhsot 127.0.0.1 create user 'test'@'localhost' identified by '123456'; # 允许外网 IP 访问 create user 'test'@'%' identified by '12345 阅读全文
posted @ 2020-10-21 12:18 pmm-cnblogs 阅读(215) 评论(0) 推荐(0)