feat: add gitea server
This commit is contained in:
parent
edd8c604db
commit
5274195563
|
@ -144,6 +144,25 @@
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ htop ];
|
environment.systemPackages = with pkgs; [ htop ];
|
||||||
|
|
||||||
|
services.gitea = {
|
||||||
|
enable = true;
|
||||||
|
domain = "git.fainsin.bzh";
|
||||||
|
rootUrl = "https://git.fainsin.bzh";
|
||||||
|
lfs.enable = true;
|
||||||
|
database.type = "postgres";
|
||||||
|
settings = {
|
||||||
|
service = {
|
||||||
|
"DEFAULT_KEEP_EMAIL_PRIVATE" = true;
|
||||||
|
"DISABLE_REGISTRATION" = true;
|
||||||
|
};
|
||||||
|
server = { "LANDING_PAGE" = "explore"; };
|
||||||
|
session = {
|
||||||
|
"PROVIDER" = "db";
|
||||||
|
"COOKIE_SECURE" = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
services.nginx = {
|
services.nginx = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -171,6 +190,14 @@
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
root = "/srv/www/";
|
root = "/srv/www/";
|
||||||
};
|
};
|
||||||
|
"git.fainsin.bzh" = {
|
||||||
|
enableACME = true;
|
||||||
|
forceSSL = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://localhost:3000/";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
default = {
|
default = {
|
||||||
default = true;
|
default = true;
|
||||||
locations."/".return = ''301 "$scheme://fainsin.bzh" '';
|
locations."/".return = ''301 "$scheme://fainsin.bzh" '';
|
||||||
|
|
Loading…
Reference in a new issue