desktop-2024-11-03-09-13-27
This commit is contained in:
@ -1,12 +1,16 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
services = {
|
||||
nginx = {
|
||||
virtualHosts = {
|
||||
${config.services.gitea.settings.server.DOMAIN} = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations = { "/" = { proxyPass = "http://127.0.0.1:3001/"; }; };
|
||||
locations = {"/" = {proxyPass = "http://127.0.0.1:3001/";};};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user