Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
从 Halo 迁移到 Hexo 的实践经验
背景之前使用 Halo 作为博客系统,但发现它对 Markdown 的支持不够完善,因此决定迁移到 Hexo。 迁移过程1. 停止 Halo 服务1docker compose down 2. 部署 Hexo使用 Docker 部署 Hexo 服务: 123456789services: hexo: image: spurin/hexo:latest container_name: hexo-blog restart: unless-stopped ports: - "6101:4000" volumes: - ./blog:/app 3. 配置 Nginx 反向代理修改 nginx 配置,将流量转向新的 Hexo 服务。 优势 更好的 Markdown 支持:原生支持各种 Markdown 语法 静态生成:加载速度更快 主题丰富:有大量精美的主题可选择 插件生态:丰富的插件扩展功能 总结Hexo 确实比 Halo 更适合技术博客的写作需求,特别是对 Markdown...