diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-10-30 11:12:09 +0200 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-10-30 11:12:09 +0200 |
commit | 33cd6eafeb9852ea9481401dfeb66b87b6ccc480 (patch) | |
tree | 336bdbf7132b2eb9401a5168ffe6016d2e0b771e /machines/srv1 | |
parent | 4ecb39719e21e62716a268d4647b3ee924aab66a (diff) | |
download | dots-33cd6eafeb9852ea9481401dfeb66b87b6ccc480.tar.gz dots-33cd6eafeb9852ea9481401dfeb66b87b6ccc480.zip |
Add trac
Diffstat (limited to 'machines/srv1')
-rw-r--r-- | machines/srv1/configuration.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/machines/srv1/configuration.nix b/machines/srv1/configuration.nix index 9a95092..4ffa80a 100644 --- a/machines/srv1/configuration.nix +++ b/machines/srv1/configuration.nix @@ -178,6 +178,11 @@ in enableACME = true; forceSSL = true; }; + "bug.niedzwiedzinski.cyou" = { + locations."/".proxyPass = "http://0.0.0.0:8000/"; + enableACME = true; + forceSSL = true; + }; "tmp.niedzwiedzinski.cyou" = { enableACME = true; addSSL = true; @@ -311,6 +316,10 @@ in }; }; + services.trac = { + enable = true; + }; + services.rss-bridge = { enable = true; virtualHost = "rss.srv1.niedzwiedzinski.cyou"; |