11 lines
303 B
Nix
11 lines
303 B
Nix
{ config, lib, ... }:
|
|
{
|
|
services.nginx.virtualHosts."${config.services.forgejo.settings.server.DOMAIN}" = lib.mkIf config.services.forgejo.enable {
|
|
enableACME = true;
|
|
forceSSL = true;
|
|
locations."/" = {
|
|
proxyPass = "http://127.0.0.1:3110";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
}
|