hai world

This commit is contained in:
Mork Swork 2026-02-16 12:26:47 -08:00
parent eba08dc984
commit cf38d6fc59
3 changed files with 6 additions and 16 deletions

View file

@ -24,23 +24,12 @@
enableACME = true; # Enable Let's Encrypt certificate for HTTPS
forceSSL = false; # Redirect HTTP to HTTPS?
addSSL = true;
root = "/dev/null";
locations."/" = {
extraConfig = ''
default_type text/html;
return 200 '<!DOCTYPE html>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h1>Hello World!</h1>
<p>Welcome to pdxdestiny.com</p>
</body>
</html>';
root = pkgs.runCommand "pdxdestiny-web" {} ''
mkdir -p $out
cp ${./pdxdestiny/index.html} $out/index.html
cp ${pkgs.copyPathToStore ./logo.png} $out/logo.png
'';
};
};
"fbksdigital.com" = {
enableACME = true; # Enable Let's Encrypt certificate for HTTPS
forceSSL = false; # Redirect HTTP to HTTPS?

View file

@ -0,0 +1 @@
hai world

View file