Building a static site without database using jekyll on fedora 26
Jekyll is a simple static site generator that focuses on blogs, but can be used for all kinds of sites. It takes HTML templates and posts written in Markdown to generate a static website which is ready to deploy on your favorite web server.
[cipher ~]$ sudo dnf install gcc-c++
[root@server ~]# sudo dnf install ruby-devel
[cipher ~]$ sudo gem install jekyll
[cipher ~/jekyll/test-site]$ gem install minima
[cipher ~]$ sudo gem install bundler
[cipher ~]$ sudo dnf install nodejs
[cipher ~]$ mkdir jekyll
[cipher ~]$ cd jekyll/
[cipher ~/jekyll]$ jekyll new test-site
Running bundle install in /home/cipher/jekyll/test-site...
[cipher ~/jekyll/test-site]$ jekyll serve
Configuration file: /home/cipher/jekyll/test-site/_config.yml
Source: /home/cipher/jekyll/test-site
Destination: /home/cipher/jekyll/test-site/_site
Server address: https://127.0.0.1:4000/
Server running... press ctrl-c to stop.
To make it listen on all IP addresses:
[cipher ~/jekyll/test-site]$ jekyll serve --host=0.0.0.0
Server address: https://0.0.0.0:4000/
Server running... press ctrl-c to stop.
Related Articles
Building a static site without database using jekyll on fedora 26
Install and use Jekyll static site generator on Fedora 26 to build a blog without a database.
How We Set Up Our KVM Hypervisor: From Bare Metal to Production-Ready VM Host
Detailed walkthrough of building a dedicated KVM/libvirt hypervisor with XFS tuning, hugepages, 10GbE tuning, and automation.
Building a Predictable KVM Infrastructure: From Chaos to Control
How to engineer a predictable KVM-based infrastructure focusing on repeatability, observability, and operational safety.