06 2019 档案
nginx 限制访问
摘要:IP限制 //修改server配置文件 allow 192.168.137.2; deny all; auth basic auth_basic "Admin only" auth_basic_user_file /etc/nginx/.htpassed //安装htpasswd sudo apt install apach2-utils sudo htpasswd -... 阅读全文
posted @ 2019-06-09 21:47 jzfan
正则表达式
摘要:匹配 url 加入https 加入ftp 取得捕获内容 阅读全文
posted @ 2019-06-09 01:54 jzfan
tailwind + vue
摘要:在根目录下生成 tailwind 配置文件 npx tailwind init --full 修改 package.json 的 postcss 选项 "postcss": { "plugins": { "tailwindcss": "./tailwind.config.js", "autoprefixer": {} } }, ... 阅读全文
posted @ 2019-06-04 21:52 jzfan