Compare commits

...

2 commits

Author SHA1 Message Date
0cfc0983ab
add utf8 charset 2024-10-01 04:40:53 -04:00
bfc33bbc7e
add user 2024-10-01 04:40:46 -04:00
2 changed files with 11 additions and 0 deletions

View file

@ -174,4 +174,12 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID1qacNDp7UVlpdIqekaaDmUvzjXCCRnqM5J8Oz+g4mZ ara@cobalt-2024-09-29" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID1qacNDp7UVlpdIqekaaDmUvzjXCCRnqM5J8Oz+g4mZ ara@cobalt-2024-09-29"
]; ];
}; };
users.users."6a" = {
uid = 2023;
isNormalUser = true;
homeMode = "755";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB8fQxBEPLTPewhJUJJ2nvLEWRqZuXo1fxbVwPVxPC2F j@emil"
];
};
} }

View file

@ -4,6 +4,9 @@
services.nginx.virtualHosts."stella.wolfgirl.systems" = { services.nginx.virtualHosts."stella.wolfgirl.systems" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
extraConfig = ''
charset utf-8;
'';
locations."~ \"^/~(.+?)(/.*)?$\"" = { locations."~ \"^/~(.+?)(/.*)?$\"" = {
alias = "/home/$1/public_html$2"; alias = "/home/$1/public_html$2";
index = "index.html"; index = "index.html";