-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c118fd7
commit 4de7acb
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,6 +73,7 @@ | |
} | ||
|
||
]; | ||
srv3 = nixosSystem "x86_64-linux" "srv3" []; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ config, lib, ... }: | ||
let | ||
cfg = config.services.obsidian-livesync; | ||
in | ||
{ | ||
options = { | ||
services.obsidian-livesync = { | ||
enable = lib.mkEnableOption "Obsidian Livesync Host"; | ||
|
||
domain = lib.mkOption { | ||
type = lib.types.str; | ||
description = "This option is required and must be set by the user."; | ||
default = lib.mkDefault null; | ||
}; | ||
|
||
couchdb.adminPass = lib.mkOption { | ||
description = "Couchdb password."; | ||
default = ""; | ||
type = lib.types.str; | ||
}; | ||
|
||
couchdb.databaseDir = lib.mkOption { | ||
description = "Specifies location of CouchDB database files (*.couch named). This location should be writable and readable for the user the CouchDB service runs as (couchdb by default)."; | ||
default = "/srv/couchdb"; | ||
type = lib.types.path; | ||
}; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable ( | ||
lib.mkIf (cfg.domain == null) | ||
(throw "You must set `services.obsidian-livesync.domain` to use this service") | ||
{ | ||
services.couchdb = { | ||
enable = true; | ||
adminPass = cfg.couchdb.adminPass; | ||
databaseDir = cfg.couchdb.databaseDir; | ||
}; | ||
|
||
services.nginx = { | ||
enable = true; | ||
virtualHost.${cfg.domain} = { | ||
enableACME = true; | ||
forceSSL = true; | ||
locations."/" = { | ||
proxyPass = "http://127.0.0.1:${config.services.couchdb.port}"; | ||
proxySetHeader = { | ||
Host = "$host"; | ||
X-Real-IP = "$remote_addr"; | ||
X-Forwarded-For = "$proxy_add_x_forwarded_for"; | ||
X-Forwarded-Proto = "$scheme"; | ||
}; | ||
}; | ||
}; | ||
}; | ||
}); | ||
} |