From 2bc594255cbfec234bd1702057b28dbb20d9fb78 Mon Sep 17 00:00:00 2001 From: bryan Date: Wed, 12 Feb 2020 22:48:00 -0500 Subject: [PATCH] Test out new beautifuljekyll link code --- .../_posts/2018-12-03-deploying-multiple-jekyll-sites.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md b/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md index 73be00c..ef81d25 100644 --- a/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md +++ b/blog.bryanroessler.com/_posts/2018-12-03-deploying-multiple-jekyll-sites.md @@ -8,7 +8,7 @@ tags: [jekyll, git] As advertised, Jekyll is an excellent choice for building a simple (and secure!) personal or small business website. However, when compared to its better-known and bigger brethren, scaling the Jekyll workflow to manage multiple sites or subdomains is not readily apparent. In this post I will outline a git-based workflow to build and deploy a website with multiple subdomains. -I prefer storing my work in version controlled git repositories in order to keep track of modifications and to assist in the backup and restore of my environment and data on multiple machines. One of the machines that I use to store this data [is also the cloud storage VPS that I use to run this site.]({{ site.baseurl }}{% post_url 2018-06-22-strategies-for-maximizing-vps %}) The storage VPS holds the [bare website repositories](https://git.bryanroessler.com/bryan/www) that I can push to and pull from my other development machines. Since my website repositories contain jekyll site code, all that I need to do is to instruct the VPS to build and deploy that code! +I prefer storing my work in version controlled git repositories in order to keep track of modifications and to assist in the backup and restore of my environment and data on multiple machines. One of the machines that I use to store this data [is also the cloud storage VPS that I use to run this site.]({{ {% post_url 2018-06-22-strategies-for-maximizing-vps %} | relative_url }}) The storage VPS holds the [bare website repositories](https://git.bryanroessler.com/bryan/www) that I can push to and pull from my other development machines. Since my website repositories contain jekyll site code, all that I need to do is to instruct the VPS to build and deploy that code! There are three steps that need to occur for this to happen seamlessly after the git repos have been created (which is outside the scope of this post).