github上弄了个在线简历模板,想挂到自己的域名网站上,由于一级域名是自己的项目,所以弄个二级域名,地址resume.collegetravel.cn,因为原项目运行在localhost:8000端口上,所以使用nginx代理转发一下即可。
首先需要在阿里云把二级域名解析上去,加个resume解析一下就好。
之后在服务器改一下自己的nginx配置文件,当访问resume.collegetravel.cn的时候代理转发到访问localhost:8000上。
server {
listen 80;
server_name resume.collegetravel.cn;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
#access_log logs/p_access.log;
}
最后当然是项目部署了,这个项目部署比较简单,上传项目文件夹,输命令使用pm2后台运行就可以了
但是不明白为什么啊,请求的时候会被阻塞好久!虽然页面早就出来了,就是会被阻塞。。。哎,以后再说吧。。