一.安装环境 推荐购买腾讯云活动的轻应用服务器 2C2G 就可以啦,我买的是 45 一年的:点我购买 以下命令默认在 ubuntu 系统上执行 安装 nginx apt-get install nginxmkdir /wwwroot/blog 生成博客 h
推荐购买腾讯云活动的轻应用服务器 2C2G 就可以啦,我买的是 45 一年的:点我购买
以下命令默认在 ubuntu 系统上执行
安装 nginx
apt-get install nginx
mkdir /wwwroot/blog
生成博客
hexo deploy
然后把 public 文件夹打包,并上传到服务器上,然后解压博客到 /wwwroot/blog
目录下。
└── blog
├── 404.html
├── about
│ └── index.html
├── archives
│ ├── 2022
│ │ ├── 06
│ │ │ └── index.html
│ │ ├── 07
│ │ │ └── index.html
│ │ └── index.html
│ └── index.html
├── index.html
配置 nginx
vim /etc/nginx/conf.d/blog.conf
server {
listen 80;
server_name <配置你的目录>;
root /wwwroot/blog;
error_page 404 = /404.html;
access_log off;
location / {
index index.html;
}
}
保存后执行 nginx -s reload
命令就可以访问啦。
使用腾讯云 CDN https://console.cloud.tencent.com/cdn
免费证书:https://console.cloud.tencent.com/ssl
因为是静态博客,默认会全部缓存,所以发布了新博客,或者对博客有了更改,需要刷新才能看到效果:https://console.cloud.tencent.com/cdn/refresh
目前学习.NET Core 最好的教程 .NET Core 官方教程 ASP.NET Core 官方教程
.NET Core 交流群:923036995 欢迎加群交流
如果您认为这篇文章还不错或者有所收获,您可以点击右下角的【推荐】支持,或请我喝杯咖啡【赞赏】,这将是我继续写作,分享的最大动力!