4 files changed,
52 insertions(+),
0 deletions(-)
Author:
Olexandr Smirnov
olexsmir@gmail.com
Committed at:
2025-07-24 22:21:13 +0300
jump to
| A | .gitignore |
| A | Containerfile |
| A | extensions/.keep |
| A | fly.toml |
A
Containerfile
@@ -0,0 +1,3 @@
+FROM docker.io/freshrss/freshrss:1.26.3 + +COPY ./extensions/ /var/www/FreshRSS/extensions
A
fly.toml
@@ -0,0 +1,46 @@
+app = 'myfreshyrssy' +primary_region = 'otp' +kill_signal = 'SIGINT' +kill_timeout = '5s' + +[experimental] + auto_rollback = true + +[build] + image = 'freshrss/freshrss:1.26.1' + + +[env] + CRON_MIN = '*/20' + +[[mounts]] + source = 'freshrss_data' + destination = '/var/www/FreshRSS/data' + +[[services]] + protocol = 'tcp' + internal_port = 80 + processes = ['app'] + + [[services.ports]] + port = 80 + handlers = ['http'] + force_https = true + + [[services.ports]] + port = 443 + handlers = ['tls', 'http'] + + [services.concurrency] + type = 'connections' + hard_limit = 25 + soft_limit = 20 + + [[services.tcp_checks]] + interval = '15s' + grace_period = '1s' + +[[vm]] + memory = '512mb' + cpu_kind = 'shared' + cpus = 1