summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2023-03-03 11:45:52 +0200
committerPaul Buetow <paul@buetow.org>2023-03-03 11:45:52 +0200
commitf324f310f7914267f2fb99bbe22dfdb162dd5124 (patch)
treeb49b554b65ce40aab9d0a8f2f56ca3a196b4db66
parentc082455b945d8cf4204fca5d321a379ef74e455e (diff)
move paul.buetow.org to paul.cyou
-rw-r--r--frontends/etc/httpd.conf.tpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/etc/httpd.conf.tpl b/frontends/etc/httpd.conf.tpl
index 8d8e292..6ca131d 100644
--- a/frontends/etc/httpd.conf.tpl
+++ b/frontends/etc/httpd.conf.tpl
@@ -30,7 +30,7 @@ server "<%= "$hostname.$domain" %>" {
}
# Gemtexter hosts
-<% for my $host (qw/foo.zone snonux.land paul.buetow.org/) { %>
+<% for my $host (qw/foo.zone snonux.land paul.cyou/) { %>
server "<%= $prefix.$host %>" {
listen on * tls port 443
tls {
@@ -44,8 +44,8 @@ server "<%= $prefix.$host %>" {
}
<% } %>
-# Redirect to paul.buetow.org
-<% for my $host (qw/buetow.org paul.cyou/) { %>
+# Redirect to paul.cyou
+<% for my $host (qw/buetow.org paul.buetow.org/) { %>
server "<%= $prefix.$host %>" {
listen on * tls port 443
tls {
@@ -53,7 +53,7 @@ server "<%= $prefix.$host %>" {
key "/etc/ssl/private/<%= $prefix.$host %>.key"
}
location * {
- block return 302 "https://<%= $prefix %>paul.buetow.org"
+ block return 302 "https://<%= $prefix %>paul.cyou"
}
}
<% } %>