mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-17 09:47:03 -04:00
21 lines
398 B
Nix
21 lines
398 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
nginx = {
|
|
virtualHosts = {
|
|
"obsidian.sadan.zip" = {
|
|
extraConfig = ''
|
|
client_max_body_size 1000M;
|
|
'';
|
|
forceSSL = true;
|
|
useACMEHost = "sadan.zip";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:5984";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|