aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--services/templates/disabled/docker-compose.yaml11
-rw-r--r--services/templates/disabled/nginx/timeline.conf.template21
2 files changed, 0 insertions, 32 deletions
diff --git a/services/templates/disabled/docker-compose.yaml b/services/templates/disabled/docker-compose.yaml
deleted file mode 100644
index 0cd2256..0000000
--- a/services/templates/disabled/docker-compose.yaml
+++ /dev/null
@@ -1,11 +0,0 @@
-services:
- timeline:
- image: crupest/timeline:latest
- pull_policy: always
- container_name: timeline
- restart: on-failure:3
- environment:
- - ASPNETCORE_FORWARDEDHEADERS_ENABLED=true
- - TIMELINE_DisableAutoBackup=true
- volumes:
- - ./data/timeline:/root/timeline
diff --git a/services/templates/disabled/nginx/timeline.conf.template b/services/templates/disabled/nginx/timeline.conf.template
deleted file mode 100644
index 086c1f7..0000000
--- a/services/templates/disabled/nginx/timeline.conf.template
+++ /dev/null
@@ -1,21 +0,0 @@
-server {
- listen 443 ssl http2;
- listen [::]:443 ssl http2;
- server_name timeline.@@CRUPEST_DOMAIN@@;
-
- location / {
- include conf.d/common/reverse-proxy;
- proxy_pass http://timeline:5000/;
- }
-
- client_max_body_size 5G;
-}
-
-server {
- listen 80;
- listen [::]:80;
- server_name timeline.@@CRUPEST_DOMAIN@@;
-
- include conf.d/common/https-redirect;
- include conf.d/common/acme-challenge;
-}