home · contact · privacy
Improve websites server setup.
[config] / bookworm / setup_scripts / setup_status.plomlompom.com.sh
index d5e6d180b0a30ec0b681e5a3cf257adea1807dc1..e5db2111ea337fab27f1aff10e15b37f6484c781 100755 (executable)
@@ -4,14 +4,22 @@ set -e
 
 expect_setup_finished_file setup_web_has_been_run setup_web.sh
 
-if [ -z "$1"]; then
+if [ -z "$1" ]; then
     domain="status.plomlompom.com"
+    mail="plom+status@plomlompom.com"
+elif [ "$#" -lt 2 ]; then
+    domain="$1"
+    mail="plom+testing@plomlompom.com"
 else
     domain="$1"
+    mail="$2"
 fi
+echo "Assuming domain ${domain} and letsencrypt support mail address ${mail}, abort and provide as arguments in this order if other desired! (Otherwise just hit Return.)"
+read
+
 # Install configs, set up firewall.
-./install_for_target.sh static_websites
-./copy_dirtree.sh "${config_tree_prefix}/etc_files" "" static_websites
+./install_for_target.sh status.plomlompom.com
+./copy_dirtree.sh "${config_tree_prefix}/etc_files" "" status.plomlompom.com 
 nft -f /etc/nftables.conf
 
 # Set up letsencrypt certificate. TODO: Is it auto-renewed?