chore(deps): update renovate/renovate docker tag to v37.68.4 #218

Open
renovate wants to merge 1976 commits from renovate/renovate-renovate-37.x into main
2 changed files with 8 additions and 3 deletions
Showing only changes of commit ed88c499c3 - Show all commits

View file

@ -35,7 +35,6 @@ in
enable = true;
package = pkgs.postgresql_13;
ensureDatabases = [ db_name ];
# authentication = "host ${db_name} ${db_user} 127.0.0.1/32 trust";
ensureUsers = [
{
name = db_user;
@ -59,6 +58,9 @@ in
"hedgedoc"
];
allowEmailRegister = false;
allowAnonymousEdits = true;
allowFreeURL = true;
requireFreeURLAuthentication = true;
imageUploadType = "minio";
db = {
dialect = "postgres";
@ -68,8 +70,9 @@ in
};
s3bucket = "hedgedoc";
minio = {
secure = false;
endPoint = "minio.olympus";
secure = true;
endPoint = "o.0x76.dev";
port = 443;
accessKey = "$MINIO_ACCESS_KEY";
secretKey = "$MINIO_SECRET_KEY";
};

View file

@ -30,6 +30,7 @@ in
enable = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
package = pkgs.nginxMainline.override {
modules = with pkgs.nginxModules; [ brotli ];
@ -40,6 +41,7 @@ in
virtualHosts."zookeeper-dev.0x76.dev" = proxy "http://eevee.olympus:8085/";
virtualHosts."md.0x76.dev" = proxy "http://hedgedoc.olympus:3000/";
virtualHosts."git.0x76.dev" = proxy "http://gitea.olympus:3000";
virtualHosts."o.0x76.dev" = proxy "http://minio.olympus:9000";
# Kubernetes endpoints
virtualHosts."0x76.dev" = k8s_proxy;