MockApiServer 用于快速创建虚拟后端服务器接口
最近在学前端,用到了Mockjs,但是翻文档没找到怎么设置响应状态码,就写了个这个
目前功能比较简单,对我来说基本够用了,后续有想法再更新
项目地址:https://github.com/BlueJay21st/MockApiServer
使用说明:https://github.com/BlueJay21st/MockApiServer/blob/master/README.md
最近在学前端,用到了Mockjs,但是翻文档没找到怎么设置响应状态码,就写了个这个
目前功能比较简单,对我来说基本够用了,后续有想法再更新
项目地址:https://github.com/BlueJay21st/MockApiServer
使用说明:https://github.com/BlueJay21st/MockApiServer/blob/master/README.md
设计的一个项目需要客户端离线使用的同时控制使用时间,如果获取本地时间判断容易被欺骗,用带时钟的加密狗无法提前结束或者追加时长,就想到了以下方法
1、提前在程序中保存:ID、本机密码、验证码接口,其中本机密码是不可让用户知道的。
2、程序运行时随机生成一串数字,将ID与随机数拼接在接口后作为GET参数提交,生成二维码显示。
3、用户扫码打开网页,服务器根据ID判断用户身份,获取对应密码,然后按 md5(ID + 9位数 + 密码)来计算MD5,取前四位显示。
4、用户输入软件,软件按相同方式计算MD5取前四位比对判断是否正确。
脚本代码如下:
#!/bin/bash
echo -n "请设置MySQL密码:"
read password
echo "更新系统内核..."
dnf -y update
echo "正在安装 EPEL && Remi..."
dnf -y install https://dl.Fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
echo "正在安装 Nginx-1.18..."
dnf -y module reset nginx
dnf -y module enable nginx:1.18
dnf -y install nginx
echo "正在设置 Nginx..."
echo 'user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
include /usr/share/nginx/modules/*.conf;
events {
use epoll;
worker_connections 102400;
}
http {
log_format main '"'"'$remote_addr - $remote_user [$time_local] "$request" '"'"'
'"'"'$status $body_bytes_sent "$http_referer" '"'"'
'"'"'"$http_user_agent" "$http_x_forwarded_for"'"'"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
server_tokens off;
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_comp_level 2;
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png;
gzip_vary off;
gzip_disable "MSIE [1-6]\.";
include /etc/nginx/mime.types;
default_type application/octet-stream;
include /etc/nginx/conf.d/php-fpm.conf;
include /var/www/wwwconf/*.conf;
}' > /etc/nginx/nginx.conf
echo 'location ~ [^/]\.php(/|$){
try_files $uri =404;
fastcgi_intercept_errors on;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass php-fpm;
set $real_script_name $fastcgi_script_name;
if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
set $real_script_name $1;
set $path_info $2;
}
fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;
fastcgi_param SCRIPT_NAME $real_script_name;
fastcgi_param PATH_INFO $path_info;
}' > /etc/nginx/default.d/php.conf
echo "正在安装 PHP-8.0"
dnf -y module reset php
dnf -y module enable php:remi-8.0
dnf -y install php php-fpm php-pdo php-mysqlnd php-mbstring
echo "正在安装 MySQL-8.0"
dnf -y module reset mysql
dnf -y module enable mysql:8.0
dnf -y install mysql mysql-server
echo "正在设置 MySQL..."
systemctl start mysqld
dnf -y install expect
echo '#!/usr/bin/expect
set timeout 60
set password [lindex $argv 0]
spawn mysql_secure_installation
expect {
"Press Y" { send "Y\r"; exp_continue}
"Press y" { send "y\r"; exp_continue}
"Please enter 0 = LOW" { send "0\r"; exp_continue}
"password" { send "$password\r"; exp_continue}
}
interact ' > mysql_secure_installation.exp
chmod +x mysql_secure_installation.exp
./mysql_secure_installation.exp $password
rm -rf mysql_secure_installation.exp
echo "正在创建站点目录..."
rm -rf /var/www/*
mkdir /var/www/wwwconf
mkdir /var/www/wwwroot
mkdir /var/www/wwwssl
mkdir /var/www/wwwlog
echo '正在创建默认站点...'
echo 'server {
listen 80 default_server;
listen [::]:80;
server_name 127.0.0.1;
index index.php index.html;
root /var/www/wwwroot/default;
access_log /var/www/wwwlog/default.log;
include /etc/nginx/default.d/php.conf;
}' > /var/www/wwwconf/default.conf
mkdir /var/www/wwwroot/default
echo '<?php phpinfo(); ?>' > /var/www/wwwroot/default/index.php
echo "正在安装 phpmyadmin..."
wget -O phpmyadmin.zip https://files.phpmyadmin.net/phpMyAdmin/5.0.4/phpMyAdmin-5.0.4-all-languages.zip
unzip phpmyadmin.zip -d /var/www/wwwroot/default
mv /var/www/wwwroot/default/phpMyAdmin-5.0.4-all-languages /var/www/wwwroot/default/phpmyadmin
chmod -R 777 /var/www/wwwroot/default/*
rm -rf phpmyadmin.zip
echo "设置自动更新..."
echo "30 01 * * * dnf -y update >> /tmp/tmp.txt" >> /var/spool/cron/root
systemctl restart crond
echo "正在启动 Nginx..."
systemctl enable nginx
systemctl start nginx
echo "正在启动 PHP..."
systemctl enable php-fpm
systemctl start php-fpm
echo "正在启动 MySQL..."
systemctl enable mysqld
systemctl restart mysqld
echo "安装完成!"
本插件目前有两个功能:
1、发布文章时通过API主动将文章推送给百度
2、用户在前台浏览文章时,会在每个页面底部加载自动提交代码,将当前浏览的页面提交给百度
写了个Typecho生成sitemap.xml的插件,目前还不完善,只能输出独立页面和文章链接,不会输出分类、标签和日期归档
项目地址:https://github.com/BlueJay21st/Typecho-Sitemap
效果:https://coldwinter.top/sitemap.xml