feat: ghost

This commit is contained in:
Anish Lakhwara
2024-05-21 20:39:19 -07:00
parent a37a72e81f
commit 091b653c9a
4 changed files with 186 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{pkgs, ... }:
{
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
# Enables MySQL
services.mysql = {
enable = true;
package = pkgs.mariadb;
};
services."write.sealight.xyz".enable = true;
}