mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-27 02:28:53 -05:00
18 lines
311 B
Nix
18 lines
311 B
Nix
{ ... }:
|
|
{
|
|
services = {
|
|
nginx = {
|
|
virtualHosts = {
|
|
"vw.sadan.zip" = {
|
|
forceSSL = true;
|
|
useACMEHost = "sadan.zip";
|
|
locations = {
|
|
"/" = {
|
|
proxyPass = "http://localhost:3231";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|