mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-18 18:27:00 -04:00
add obsidian livesync
use relative path rename dockerfile and change build arg try systemd tmpfiles add docker entrypoint use more systemd tmpfiles whoops i was missing a file remove home.files and move to systemd.tmpfiles dont use root make immutable make immutable v2 whoops remove +i needs to be executable
This commit is contained in:
parent
2852bb3c35
commit
6e56012318
11 changed files with 446 additions and 0 deletions
19
common/users/docker/obsidian/nginx.nix
Normal file
19
common/users/docker/obsidian/nginx.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
{ ... }:
|
||||
{
|
||||
services = {
|
||||
nginx = {
|
||||
virtualHosts = {
|
||||
"obsidian.sadan.zip" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "sadan.zip";
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "http://localhost:5984";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue