diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-07-18 13:41:38 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-07-18 13:41:38 -0400 |
| commit | 9baa502c65c5dc716daafcbba60610bf238264bf (patch) | |
| tree | b2af1bd70cd469cc82e54093437fe1ed9b9a2eed | |
| parent | ff46ffbca469dbf4bb15e81bb945cf51088bb511 (diff) | |
update domain
| -rw-r--r-- | nginx/homepage-testing.conf | 2 | ||||
| -rw-r--r-- | nginx/homepage.conf | 10 | ||||
| -rw-r--r-- | zola-static/config.toml | 2 | ||||
| -rw-r--r-- | zola-static/content/about-this-site.md | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/nginx/homepage-testing.conf b/nginx/homepage-testing.conf index dce9389..8b308c5 100644 --- a/nginx/homepage-testing.conf +++ b/nginx/homepage-testing.conf @@ -2,7 +2,7 @@ server { listen 80 ; listen [::]:80 ; - server_name jackjamison.xyz; + server_name jackjamison.net; location / { root /var/www/homepage; diff --git a/nginx/homepage.conf b/nginx/homepage.conf index dc99ab9..f5ad47d 100644 --- a/nginx/homepage.conf +++ b/nginx/homepage.conf @@ -1,6 +1,6 @@ # https server server { - server_name jackjamison.xyz ; + server_name jackjamison.net ; location / { root /var/www/homepage; @@ -10,8 +10,8 @@ server { listen [::]:443 ssl ipv6only=on; # managed by Certbot listen 443 ssl; # managed by Certbot - ssl_certificate /etc/letsencrypt/live/jackjamison.xyz/fullchain.pem; # managed by Certbot - ssl_certificate_key /etc/letsencrypt/live/jackjamison.xyz/privkey.pem; # managed by Certbot + ssl_certificate /etc/letsencrypt/live/jackjamison.net/fullchain.pem; # managed by Certbot + ssl_certificate_key /etc/letsencrypt/live/jackjamison.net/privkey.pem; # managed by Certbot include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot @@ -19,13 +19,13 @@ server { # http redirect server { - if ($host = jackjamison.xyz) { + if ($host = jackjamison.net) { return 301 https://$host$request_uri; } # managed by Certbot listen 80 ; listen [::]:80 ; - server_name jackjamison.xyz ; + server_name jackjamison.net ; return 404; # managed by Certbot }
\ No newline at end of file diff --git a/zola-static/config.toml b/zola-static/config.toml index 3ffcdc7..f8acd81 100644 --- a/zola-static/config.toml +++ b/zola-static/config.toml @@ -1,5 +1,5 @@ # The URL the site will be built for -base_url = "https://jackjamison.xyz" +base_url = "https://jackjamison.net" # Whether to automatically compile all Sass files in the sass directory compile_sass = true diff --git a/zola-static/content/about-this-site.md b/zola-static/content/about-this-site.md index 08b7304..fabd3fb 100644 --- a/zola-static/content/about-this-site.md +++ b/zola-static/content/about-this-site.md @@ -9,4 +9,4 @@ template = "main-page.html" - It is hosted on [Vultr](https://www.vultr.com/). - [Epik](https://epik.com) is my domain registrar. -There are no ads or trackers on this site. The source code is available on [github](https://github.com/JackJ30/jackjamison.xyz). +There are no ads or trackers on this site. The source code is available on [github](https://github.com/JackJ30/jackjamison.net). |
