posted @ 2019-09-07 15:39
jzfan
阅读(188)
推荐(0)
 
		
    
        
        
摘要:        
1. init npm init -y npm install tailwindcss postcss-cli autoprefixer @fullhuman/postcss-purgecss -D npx tailwind init 2. postcss.config.js const purge    
阅读全文
posted @ 2019-08-25 15:07
jzfan
阅读(180)
推荐(0)
 
		
    
        
        
摘要:        
//main.js //filters.js    
阅读全文
posted @ 2019-08-22 10:26
jzfan
阅读(265)
推荐(0)
            
        
        
        posted @ 2019-08-22 09:55
jzfan
阅读(296)
推荐(0)
 
		
    
        
        
摘要:        
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
阅读(121)
推荐(0)
            
        
        
摘要:        
匹配 url 加入https 加入ftp 取得捕获内容    
阅读全文
posted @ 2019-06-09 01:54
jzfan
阅读(71)
推荐(0)
 
		
    
        
        
摘要:        
在根目录下生成 tailwind 配置文件 npx tailwind init --full 修改 package.json 的 postcss 选项 "postcss": { "plugins": { "tailwindcss": "./tailwind.config.js", "autoprefixer": {} } }, ...    
阅读全文
posted @ 2019-06-04 21:52
jzfan
阅读(476)
推荐(0)
 
		
    
        
        
摘要:        
进入edit页面时将分页地址保存在session中,更新后跳转该地址    
阅读全文
posted @ 2019-05-23 12:22
jzfan
阅读(222)
推荐(0)
 
		
    
        
        
摘要:        
创建用户,添加权限 mysql> create user 'slave'@'192.168.137.3' identified by '123'; Query OK, 0 rows affected (0.03 sec) mysql> grant replication slave on *.* t    
阅读全文
posted @ 2019-05-15 23:47
jzfan
阅读(99)
推荐(0)
 
		
    
        
        
摘要:        
开启 //mysqld.cnf server-id = 1 log_bin = /var/log/mysql/mysql-bin.log 查询最新的日志 mysql> show master status; +------------------+----------+--------------+------------...    
阅读全文
posted @ 2019-05-14 01:24
jzfan
阅读(122)
推荐(0)