Migrate to gitea

This commit is contained in:
caem 2023-07-19 22:25:34 +02:00
parent 6db6683148
commit 9392c00e94
No known key found for this signature in database
GPG key ID: 6CB1202CC7B58265
7 changed files with 167 additions and 35 deletions

View file

@ -20,6 +20,14 @@ in {
recommendedTlsSettings = true;
virtualHosts = {
"caem.dev" = {
enableACME = true;
forceSSL = true;
locations."/" = {
root = "/var/www/caem";
};
};
"dirae.org" = {
enableACME = true;
forceSSL = true;
@ -35,14 +43,19 @@ in {
};
"gitlab.dirae.org" = {
"git.dirae.org" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket";
};
locations."/".proxyPass = "http://127.0.0.1:3001";
};
};
# "gitlab.dirae.org" = {
# enableACME = true;
# forceSSL = true;
# locations."/" = {
# proxyPass = "http://unix:/run/gitlab/gitlab-workhorse.socket";
# };
# };
};
};
}