mirror of
https://github.com/kmein/niveum
synced 2026-03-21 04:11:07 +01:00
Compare commits
2 Commits
6908b75571
...
f40ce68ced
| Author | SHA1 | Date | |
|---|---|---|---|
| f40ce68ced | |||
| bfa2b1e9b1 |
@@ -13,6 +13,9 @@ include "%L"
|
||||
<Multi_key> <E> <E> : "ɛ" U025B
|
||||
<Multi_key> <O> <O> : "ɔ" U0254
|
||||
<Multi_key> <s> <h> : "ʃ" U0283
|
||||
<Multi_key> <g> <h> : "ɣ" U0283
|
||||
<Multi_key> <b> <h> : "β" U0283
|
||||
<Multi_key> <p> <h> : "ɸ" U0283
|
||||
<Multi_key> <z> <h> : "ʒ" U0292
|
||||
<Multi_key> <e> <i> : "ɪ" U026A
|
||||
<Multi_key> <e> <u> : "ʊ" U028A
|
||||
|
||||
@@ -16,6 +16,7 @@ in {
|
||||
./names.nix
|
||||
./nextcloud.nix
|
||||
./radio-news.nix
|
||||
./scrabble.nix
|
||||
# ./onlyoffice.nix
|
||||
./retiolum-map.nix
|
||||
./tarot.nix
|
||||
|
||||
20
systems/makanek/scrabble.nix
Normal file
20
systems/makanek/scrabble.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
let
|
||||
port = 9090;
|
||||
in
|
||||
{
|
||||
virtualisation.oci-containers = {
|
||||
backend = "podman";
|
||||
containers.xanado = {
|
||||
volumes = [ ];
|
||||
ports = [ "${toString port}:9093" ];
|
||||
environment.TZ = "Europe/Berlin";
|
||||
image = "ghcr.io/cdot/xanado:v3.1.6";
|
||||
};
|
||||
};
|
||||
|
||||
services.nginx.virtualHosts."scrabble.kmein.de" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/".proxyPass = "http://localhost:${toString port}";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user