diff --git a/contrib/nginx.conf b/contrib/nginx.conf new file mode 100644 index 0000000..ed28bca --- /dev/null +++ b/contrib/nginx.conf @@ -0,0 +1,20 @@ +server { + listen 443 ssl; + listen 8080; + + server_name docks.babyl.ca; + + ssl_certificate /etc/lego/certificates/_.babyl.ca.crt; + ssl_certificate_key /etc/lego/certificates/_.babyl.ca.key; + + root /home/docks; + index index.html; + + error_log /var/log/nginx/docks-error.log error; + access_log /var/log/nginx/docks-access.log combined; + + location / { + try_files $uri $uri/ /index.html =404; + } +} +yan diff --git a/src/routes/(about)/about/+page.svelte b/src/routes/(about)/about/+page.svelte index 0e79314..35feacb 100644 --- a/src/routes/(about)/about/+page.svelte +++ b/src/routes/(about)/about/+page.svelte @@ -26,13 +26,13 @@

Written by - Yanick Champoux . Code available on - my Gitea instance.

+

Found a bug? You can report it here.

+