Benjamin Yule Bädorf
0e89b7f210
This adds an nginx configuration for https://miom.space/. MiOM is a creative collective in Cologne that frequently hosts our hakken.irl hackathons. They're already using our cloud to organize. This service is a bit more specific than most pub.solar services and falls into a similar category as the obs-portal. On the old miom website all logging was turned off, we might want to do the same thing in nginx here as well then.
41 lines
936 B
Nix
41 lines
936 B
Nix
{ flake, ... }:
|
|
|
|
{
|
|
imports =
|
|
[
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
|
|
./networking.nix
|
|
./backups.nix
|
|
./apps/nginx.nix
|
|
|
|
./apps/collabora.nix
|
|
./apps/coturn.nix
|
|
./apps/forgejo.nix
|
|
./apps/keycloak.nix
|
|
./apps/mailman.nix
|
|
./apps/mastodon.nix
|
|
./apps/mediawiki.nix
|
|
./apps/nextcloud.nix
|
|
./apps/nginx-mastodon.nix
|
|
./apps/nginx-mastodon-files.nix
|
|
./apps/nginx-prometheus-exporters.nix
|
|
./apps/nginx-website.nix
|
|
./apps/nginx-website-miom.nix
|
|
./apps/opensearch.nix
|
|
./apps/owncast.nix
|
|
./apps/postgresql.nix
|
|
./apps/prometheus-exporters.nix
|
|
./apps/promtail.nix
|
|
./apps/searx.nix
|
|
./apps/tmate.nix
|
|
|
|
./apps/matrix/irc.nix
|
|
./apps/matrix/mautrix-telegram.nix
|
|
./apps/matrix/synapse.nix
|
|
./apps/nginx-matrix.nix
|
|
];
|
|
}
|