1
1
Fork 0

Compare commits

..

3 Commits

Author SHA1 Message Date
Bill Ewanick 23e5af1ad4 Re-arrange cruft 2023-09-23 13:46:29 -04:00
Bill Ewanick 3a6300f733 Fix description 2023-09-23 13:46:10 -04:00
Bill Ewanick 72f23837e3 Strings is better, impurity doesn't work for this
Impurity being --impure flag
2023-09-23 13:43:51 -04:00
4 changed files with 5 additions and 17 deletions

View File

@ -1,7 +1,7 @@
{ pkgs, ... }:
let
PROJECT_ROOT = /workspace/deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love;
PROJECT_ROOT = "/workspace/deployed-nixos-server-and-apps/nixos-apps/cutesealfanpage.love";
in
{
services.caddy = {

View File

@ -14,4 +14,6 @@
security.acme.defaults.email = "admin@cutesealfanpage.love";
# uncomment this to use the staging server
# security.acme.server = "https://acme-staging-v02.api.letsencrypt.org/directory";
networking.firewall.allowedTCPPorts = [ 80 443 ];
}

View File

@ -1,7 +1,7 @@
{ pkgs, ... }:
let
PROJECT_ROOT = /workspace/deployed-nixos-server-and-apps/nixos-apps/ewanick.com;
PROJECT_ROOT = "/workspace/deployed-nixos-server-and-apps/nixos-apps/ewanick.com";
PORT = "5567";
HOST = "localhost";
in
@ -21,7 +21,7 @@ in
systemd.services = {
ewanick-site = {
enable = true;
description = "The hakyll executable that rebuilds the site when a new blog post is created.";
description = "A blog powered by Emanote running solely on Markdown files.";
path = with pkgs; [
nix
git

View File

@ -19,18 +19,4 @@
services.jitsi-videobridge.enable = false;
services.jitsi-videobridge.openFirewall = false;
networking.firewall.allowedTCPPorts = [ 80 443 ];
# security.acme.email = "me@example.com";
# security.acme.acceptTerms = true;
# services.caddy = {
# enable = true;
# virtualHosts = {
# "git.ewanick.com" = {
# extraConfig = ''
# reverse_proxy localhost:3000
# '';
# };
# };
# };
}