summaryrefslogtreecommitdiffstats
path: root/tv/2configs/nginx/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tv/2configs/nginx/default.nix')
-rw-r--r--tv/2configs/nginx/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/tv/2configs/nginx/default.nix b/tv/2configs/nginx/default.nix
deleted file mode 100644
index b0acb943..00000000
--- a/tv/2configs/nginx/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ config, lib, ... }:
-
-with import <stockholm/lib>;
-
-{
- services.nginx = {
- recommendedGzipSettings = true;
- recommendedOptimisation = true;
- recommendedTlsSettings = true;
-
- virtualHosts._http = {
- default = true;
- extraConfig = ''
- return 404;
- '';
- };
-
- virtualHosts.default = {
- locations."= /etc/os-release".extraConfig = ''
- default_type text/plain;
- alias /etc/os-release;
- '';
- };
- };
- tv.iptables = {
- input-retiolum-accept-tcp = singleton "http";
- };
-}