diff options
Diffstat (limited to '')
-rw-r--r-- | flora/services/nginx.nix | 6 | ||||
-rw-r--r-- | pkgs/nomsing/AnnieUseYourTelescope-Regular.ttf | bin | 0 -> 45332 bytes | |||
-rw-r--r-- | pkgs/nomsing/BlobCat_Nom.png | bin | 0 -> 15043 bytes | |||
-rw-r--r-- | pkgs/nomsing/index.html | 25 |
4 files changed, 31 insertions, 0 deletions
diff --git a/flora/services/nginx.nix b/flora/services/nginx.nix index fbbff73..ef5a3d6 100644 --- a/flora/services/nginx.nix +++ b/flora/services/nginx.nix @@ -9,5 +9,11 @@ recommendedOptimisation = true; recommendedTlsSettings = true; recommendedProxySettings = true; + + virtualHosts."noms.ing" = { + enableACME = true; + forceSSL = true; + locations."/".root = ../../pkgs/nomsing; + }; }; } diff --git a/pkgs/nomsing/AnnieUseYourTelescope-Regular.ttf b/pkgs/nomsing/AnnieUseYourTelescope-Regular.ttf Binary files differnew file mode 100644 index 0000000..609409e --- /dev/null +++ b/pkgs/nomsing/AnnieUseYourTelescope-Regular.ttf diff --git a/pkgs/nomsing/BlobCat_Nom.png b/pkgs/nomsing/BlobCat_Nom.png Binary files differnew file mode 100644 index 0000000..8f34277 --- /dev/null +++ b/pkgs/nomsing/BlobCat_Nom.png diff --git a/pkgs/nomsing/index.html b/pkgs/nomsing/index.html new file mode 100644 index 0000000..a367e4e --- /dev/null +++ b/pkgs/nomsing/index.html @@ -0,0 +1,25 @@ +<!doctype html> +<html class="no-js" lang="en"> + <head> + <title>noms!</title> + <style> + @font-face { + font-family: "Annie Use Your Telescope"; + src: url("AnnieUseYourTelescope-Regular.ttf") format("truetype"); + font-display: swap; + } + body { + text-align: center; + margin-top: 40vh; + background-color: lightcoral; + font-family: "Annie Use Your Telescope"; + font-size: 40pt; + color: white; + } + </style> + </head> + <body> + <img src="./BlobCat_Nom.png" alt="Blobcat biting another blobcat's neck"> + <p>You like biting cuties, don't you? :3</p> + </body> +</html> |