Compare commits

..

No commits in common. "c86ab83579c2123dbde0d975ddb940c3ab39bf4f" and "bb3b7efd3e79b48655f48156276d712ffb783c1a" have entirely different histories.

5 changed files with 54 additions and 98 deletions

17
services/akkoma-media.nix Normal file
View File

@ -0,0 +1,17 @@
{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."media.nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243/";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
}

17
services/akkoma.nix Normal file
View File

@ -0,0 +1,17 @@
{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243/";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
}

View File

@ -1,97 +0,0 @@
{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."media.nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."matrix.nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."cool.epic-toolbars.download" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."free.epic-toolbars.download" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."noscam.free.epic-toolbars.download" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
}

View File

@ -7,7 +7,9 @@
./owncast.nix
./uptime-kuma.nix
./iceshrimp.nix
./alex.nix
./akkoma.nix
./akkoma-media.nix
./matrix.nix
./trackmap.nix
];
}

17
services/matrix.nix Normal file
View File

@ -0,0 +1,17 @@
]{
# Reqeusts SSL and adds the site to nginx
services.nginx.virtualHosts."matrix.nederland.gay" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://192.168.178.243";
proxyWebsockets = true; # needed if you need to use WebSocket
extraConfig =
# required when the target is also TLS server with multiple hosts
"proxy_ssl_server_name on;" +
# required when the server wants to use HTTP Authentication
"proxy_pass_header Authorization;"
;
};
};
}