服务端常用知识记录

1、nginx反向代理端口

1
2
3
4
5
6
7
8
9
10
11
12
13
server
{
listen 80;
server_name www.jibinghao.com;
index index.php index.html index.htm default.php default.htm default.html;
root /www/wwwroot/www.jibinghao.com;

location / {
proxy_pass http://127.0.0.1:1111; # 或 http://www.baidu.com
proxy_set_header Host $proxy_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

通过以上配置可以反向代理到1111端口

2、后台运行jar文件

1
nohup java -jar /abc.jar --server.port=1111&

指定端口为1111,运行abc.jar文件

3、hexo后台运行
1)安装pm2

1
npm install -g pm2

2)新增一个hexo_run.js,内容如下

1
2
3
4
5
6
7
8
9
const { exec } = require('child_process')
exec('hexo server',(error, stdout, stderr) => {
if(error){
console.log(`exec error: ${error}`)
return
}
console.log(`stdout: ${stdout}`);
console.log(`stderr: ${stderr}`);
})

3)进入博客目录,运行下面的命令

1
pm2 start run.js

4、定时一分钟执行一次任务

1
2
3
crontab -l //可以查看定时任务列表
crontab -e //编辑定时任务
*/1 * * * * curl -v -k https://www.baidu.com //1分钟执行一次,忽略ssl错误

哈哈哈


本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!