aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nginx/homepage.conf6
-rwxr-xr-xscripts/constant-sync.sh5
-rwxr-xr-xscripts/setup.sh5
-rwxr-xr-xzola-static/public/index.html1
4 files changed, 17 insertions, 0 deletions
diff --git a/nginx/homepage.conf b/nginx/homepage.conf
new file mode 100644
index 0000000..bc69fbb
--- /dev/null
+++ b/nginx/homepage.conf
@@ -0,0 +1,6 @@
+server {
+ location / {
+ root /var/www/homepage;
+ index index.html;
+ }
+} \ No newline at end of file
diff --git a/scripts/constant-sync.sh b/scripts/constant-sync.sh
new file mode 100755
index 0000000..c016b44
--- /dev/null
+++ b/scripts/constant-sync.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+while true; do
+ rsync -av --delete ./zola-static/public/ /var/www/homepage/
+ sleep 5 # wait 5 seconds before the next sync
+done
diff --git a/scripts/setup.sh b/scripts/setup.sh
new file mode 100755
index 0000000..d9fb749
--- /dev/null
+++ b/scripts/setup.sh
@@ -0,0 +1,5 @@
+#!/bin/bash
+
+ln -sf $(pwd)/nginx/homepage.conf /etc/nginx/sites-enabled/homepage.conf
+mkdir /var/www/homepage/
+rsync -av --delete ./zola-static/public/ /var/www/homepage/
diff --git a/zola-static/public/index.html b/zola-static/public/index.html
new file mode 100755
index 0000000..f666065
--- /dev/null
+++ b/zola-static/public/index.html
@@ -0,0 +1 @@
+<h>Jack Jamison's Brand New Homepage!</h>