blob: 163c60d24ab3ba7d2d6eb1523c67699585a700ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
{ config, lib, ... }:
let
cfg = config.services.obsidian-livesync;
couchdb-port = config.services.couchdb.port or 5984;
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.";
};
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 {
services.couchdb = {
enable = true;
adminPass = cfg.couchdb.adminPass;
databaseDir = cfg.couchdb.databaseDir;
};
services.nginx = {
enable = true;
virtualHosts.${cfg.domain} = {
# enableACME = true;
# forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString couchdb-port}";
extraConfig = ''
proxy_set_header Host "$host";
proxy_set_header X-Real-IP "$remote_addr";
proxy_set_header X-Forwarded-For "$proxy_add_x_forwarded_for";
proxy_set_header X-Forwarded-Proto "$scheme";
add_header Access-Control-Allow-Origin "app://obsidian.md";
add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS";
add_header Access-Control-Allow-Headers "Content-Type, Authorization";
add_header Access-Control-Allow-Credentials "true";
add_header Access-Control-Max-Age 86400;
'';
};
};
};
};
}
|