├── .gitignore ├── Readme.md ├── ansible-guide.md ├── ansible-problem.md ├── assets ├── action-result.png ├── action-secret.png ├── action-select.jpg ├── action-setup.jpg ├── action-start.png ├── action-workflow.png ├── alioss-cdn.png ├── alioss-cname.png ├── alioss-domain.png ├── alioss-https.png ├── alioss-proxy.png ├── alioss-rewrite.png ├── alioss-rewrites.png ├── buy.jpg ├── cdn-cache.jpg ├── ctop-view.png ├── ctop.png ├── deploy-blog.jpg ├── dev-env.png ├── dev.drawio.png ├── drone.jpg ├── git.jpg ├── grafana.jpg ├── graphql.jpg ├── htop.jpg ├── htop.png ├── linux_perf_tools_full.png ├── lock.png ├── netlify-2.jpg ├── netlify-build-options.jpg ├── netlify-custom-domain.jpg ├── netlify-new-site.jpg ├── netlify-ok.png ├── netlify-repo-access.jpg ├── netlify-step2.jpg ├── node_modules.jpeg ├── node_modules.jpg ├── sentry-memory.png ├── sentry-ok.png ├── tmux-help.jpg ├── tmux-split.gif ├── traefik-dashboard.png ├── traefik.jpg ├── vim-ag.gif ├── vim-ctrlp.gif ├── vim-dark.png ├── vim-git.gif ├── vim-goyo.png └── vim-nerdtree.gif ├── blog-to-wechat.md ├── compose ├── chromeless │ └── docker-compose.yaml ├── dns │ ├── dnsmasq.conf │ ├── docker-compose.yaml │ └── resolv.conf ├── openvpn │ └── docker-compose.yaml ├── postgres │ └── docker-compose.yaml ├── redis │ └── docker-compose.yaml ├── traefik │ ├── docker-compose.yml │ └── traefik.toml └── whoami │ └── docker-compose.yml ├── ctop.md ├── deploy-drone.md ├── deploy-fe-with-docker.md ├── deploy-fe.md ├── deploy-postgres.md ├── deploy-redis.md ├── deploy-sentry.md ├── dev-log.md ├── dnsmasq.md ├── docker-compose-arch.md ├── docker-compose.md ├── docker.md ├── dockerfile-practice.md ├── git.md ├── htop.md ├── init.md ├── iptables.md ├── jq-sed-case.md ├── jq.md ├── linux-awk.md ├── linux-monitor.md ├── linux-sed.md ├── linux-tcpdump.md ├── openvpn.md ├── ssh-setting.md ├── system-info.md ├── tmux-setting.md ├── traefik-https.md ├── traefik-middleware.md ├── traefik.md ├── vim-setting.md ├── wechat-interview.md ├── when-server-2019.md └── when-server.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/Readme.md -------------------------------------------------------------------------------- /ansible-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/ansible-guide.md -------------------------------------------------------------------------------- /ansible-problem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/ansible-problem.md -------------------------------------------------------------------------------- /assets/action-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/action-result.png -------------------------------------------------------------------------------- /assets/action-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/action-secret.png -------------------------------------------------------------------------------- /assets/action-select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/action-select.jpg -------------------------------------------------------------------------------- /assets/action-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/action-setup.jpg -------------------------------------------------------------------------------- /assets/action-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/action-start.png -------------------------------------------------------------------------------- /assets/action-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/action-workflow.png -------------------------------------------------------------------------------- /assets/alioss-cdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-cdn.png -------------------------------------------------------------------------------- /assets/alioss-cname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-cname.png -------------------------------------------------------------------------------- /assets/alioss-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-domain.png -------------------------------------------------------------------------------- /assets/alioss-https.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-https.png -------------------------------------------------------------------------------- /assets/alioss-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-proxy.png -------------------------------------------------------------------------------- /assets/alioss-rewrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-rewrite.png -------------------------------------------------------------------------------- /assets/alioss-rewrites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/alioss-rewrites.png -------------------------------------------------------------------------------- /assets/buy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/buy.jpg -------------------------------------------------------------------------------- /assets/cdn-cache.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/cdn-cache.jpg -------------------------------------------------------------------------------- /assets/ctop-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/ctop-view.png -------------------------------------------------------------------------------- /assets/ctop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/ctop.png -------------------------------------------------------------------------------- /assets/deploy-blog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/deploy-blog.jpg -------------------------------------------------------------------------------- /assets/dev-env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/dev-env.png -------------------------------------------------------------------------------- /assets/dev.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/dev.drawio.png -------------------------------------------------------------------------------- /assets/drone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/drone.jpg -------------------------------------------------------------------------------- /assets/git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/git.jpg -------------------------------------------------------------------------------- /assets/grafana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/grafana.jpg -------------------------------------------------------------------------------- /assets/graphql.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/graphql.jpg -------------------------------------------------------------------------------- /assets/htop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/htop.jpg -------------------------------------------------------------------------------- /assets/htop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/htop.png -------------------------------------------------------------------------------- /assets/linux_perf_tools_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/linux_perf_tools_full.png -------------------------------------------------------------------------------- /assets/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/lock.png -------------------------------------------------------------------------------- /assets/netlify-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-2.jpg -------------------------------------------------------------------------------- /assets/netlify-build-options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-build-options.jpg -------------------------------------------------------------------------------- /assets/netlify-custom-domain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-custom-domain.jpg -------------------------------------------------------------------------------- /assets/netlify-new-site.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-new-site.jpg -------------------------------------------------------------------------------- /assets/netlify-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-ok.png -------------------------------------------------------------------------------- /assets/netlify-repo-access.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-repo-access.jpg -------------------------------------------------------------------------------- /assets/netlify-step2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/netlify-step2.jpg -------------------------------------------------------------------------------- /assets/node_modules.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/node_modules.jpeg -------------------------------------------------------------------------------- /assets/node_modules.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/node_modules.jpg -------------------------------------------------------------------------------- /assets/sentry-memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/sentry-memory.png -------------------------------------------------------------------------------- /assets/sentry-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/sentry-ok.png -------------------------------------------------------------------------------- /assets/tmux-help.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/tmux-help.jpg -------------------------------------------------------------------------------- /assets/tmux-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/tmux-split.gif -------------------------------------------------------------------------------- /assets/traefik-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/traefik-dashboard.png -------------------------------------------------------------------------------- /assets/traefik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/traefik.jpg -------------------------------------------------------------------------------- /assets/vim-ag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/vim-ag.gif -------------------------------------------------------------------------------- /assets/vim-ctrlp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/vim-ctrlp.gif -------------------------------------------------------------------------------- /assets/vim-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/vim-dark.png -------------------------------------------------------------------------------- /assets/vim-git.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/vim-git.gif -------------------------------------------------------------------------------- /assets/vim-goyo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/vim-goyo.png -------------------------------------------------------------------------------- /assets/vim-nerdtree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/assets/vim-nerdtree.gif -------------------------------------------------------------------------------- /blog-to-wechat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/blog-to-wechat.md -------------------------------------------------------------------------------- /compose/chromeless/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/chromeless/docker-compose.yaml -------------------------------------------------------------------------------- /compose/dns/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/dns/dnsmasq.conf -------------------------------------------------------------------------------- /compose/dns/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/dns/docker-compose.yaml -------------------------------------------------------------------------------- /compose/dns/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/dns/resolv.conf -------------------------------------------------------------------------------- /compose/openvpn/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/openvpn/docker-compose.yaml -------------------------------------------------------------------------------- /compose/postgres/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/postgres/docker-compose.yaml -------------------------------------------------------------------------------- /compose/redis/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/redis/docker-compose.yaml -------------------------------------------------------------------------------- /compose/traefik/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/traefik/docker-compose.yml -------------------------------------------------------------------------------- /compose/traefik/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/traefik/traefik.toml -------------------------------------------------------------------------------- /compose/whoami/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/compose/whoami/docker-compose.yml -------------------------------------------------------------------------------- /ctop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/ctop.md -------------------------------------------------------------------------------- /deploy-drone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/deploy-drone.md -------------------------------------------------------------------------------- /deploy-fe-with-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/deploy-fe-with-docker.md -------------------------------------------------------------------------------- /deploy-fe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/deploy-fe.md -------------------------------------------------------------------------------- /deploy-postgres.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/deploy-postgres.md -------------------------------------------------------------------------------- /deploy-redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/deploy-redis.md -------------------------------------------------------------------------------- /deploy-sentry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/deploy-sentry.md -------------------------------------------------------------------------------- /dev-log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/dev-log.md -------------------------------------------------------------------------------- /dnsmasq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/dnsmasq.md -------------------------------------------------------------------------------- /docker-compose-arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/docker-compose-arch.md -------------------------------------------------------------------------------- /docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/docker-compose.md -------------------------------------------------------------------------------- /docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/docker.md -------------------------------------------------------------------------------- /dockerfile-practice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/dockerfile-practice.md -------------------------------------------------------------------------------- /git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/git.md -------------------------------------------------------------------------------- /htop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/htop.md -------------------------------------------------------------------------------- /init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/init.md -------------------------------------------------------------------------------- /iptables.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: iptables 详解以及示例 3 | 4 | --- 5 | 6 | 7 | -------------------------------------------------------------------------------- /jq-sed-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/jq-sed-case.md -------------------------------------------------------------------------------- /jq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/jq.md -------------------------------------------------------------------------------- /linux-awk.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: awk 命令使用及示例 3 | 4 | --- 5 | 6 | 7 | -------------------------------------------------------------------------------- /linux-monitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/linux-monitor.md -------------------------------------------------------------------------------- /linux-sed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/linux-sed.md -------------------------------------------------------------------------------- /linux-tcpdump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/linux-tcpdump.md -------------------------------------------------------------------------------- /openvpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/openvpn.md -------------------------------------------------------------------------------- /ssh-setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/ssh-setting.md -------------------------------------------------------------------------------- /system-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/system-info.md -------------------------------------------------------------------------------- /tmux-setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/tmux-setting.md -------------------------------------------------------------------------------- /traefik-https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/traefik-https.md -------------------------------------------------------------------------------- /traefik-middleware.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traefik.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/traefik.md -------------------------------------------------------------------------------- /vim-setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/vim-setting.md -------------------------------------------------------------------------------- /wechat-interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/wechat-interview.md -------------------------------------------------------------------------------- /when-server-2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/when-server-2019.md -------------------------------------------------------------------------------- /when-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shfshanyue/op-note/HEAD/when-server.md --------------------------------------------------------------------------------