miniflux.1 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  1. .\" Manpage for miniflux.
  2. .TH "MINIFLUX" "1" "April 18, 2026" "\ \&" "\ \&"
  3. .SH NAME
  4. miniflux \- Minimalist and opinionated feed reader
  5. .SH SYNOPSIS
  6. \fBminiflux\fR [\fBoptions\fR]
  7. .SH DESCRIPTION
  8. \fBminiflux\fR is a minimalist and opinionated feed reader.
  9. .SH OPTIONS
  10. .B \-h, \-help
  11. .RS 4
  12. Show usage information and exit\&.
  13. .RE
  14. .PP
  15. .B \-config-dump
  16. .RS 4
  17. Print parsed configuration values.
  18. .br
  19. This will include sensitive information like passwords\&.
  20. .RE
  21. .PP
  22. .B \-c /path/to/miniflux.conf
  23. .RS 4
  24. Load configuration file\&.
  25. .RE
  26. .PP
  27. .B \-config-file /path/to/miniflux.conf
  28. .RS 4
  29. Load configuration file\&.
  30. .RE
  31. .PP
  32. .B \-create-admin
  33. .RS 4
  34. Create an admin user from an interactive terminal\&.
  35. .RE
  36. .PP
  37. .B \-debug
  38. .RS 4
  39. Set log level to debug\&.
  40. .RE
  41. .PP
  42. .B \-export-user-feeds <username>
  43. .RS 4
  44. Export user feeds (provide the username as argument)\&.
  45. .br
  46. Example:
  47. .EX
  48. miniflux -export-user-feeds someone > feeds.xml
  49. .EE
  50. .RE
  51. .PP
  52. .B \-flush-sessions
  53. .RS 4
  54. Flush all sessions (disconnect users)\&.
  55. .RE
  56. .PP
  57. .B \-healthcheck <endpoint>
  58. .RS 4
  59. Perform a health check on the given endpoint\&.
  60. .br
  61. The value "auto" tries to guess the health check endpoint\&.
  62. .RE
  63. .PP
  64. .B \-i
  65. .RS 4
  66. Show build information\&.
  67. .RE
  68. .PP
  69. .B \-info
  70. .RS 4
  71. Show build information\&.
  72. .RE
  73. .PP
  74. .B \-migrate
  75. .RS 4
  76. Run SQL migrations\&.
  77. .RE
  78. .PP
  79. .B \-refresh-feeds
  80. .RS 4
  81. Refresh a batch of feeds and exit\&.
  82. .RE
  83. .PP
  84. .B \-reset-feed-errors
  85. .RS 4
  86. Clear all feed errors for all users\&.
  87. .RE
  88. .PP
  89. .B \-reset-feed-next-check-at
  90. .RS 4
  91. Reset the next check time for all feeds\&.
  92. .RE
  93. .PP
  94. .B \-reset-password
  95. .RS 4
  96. Reset user password\&.
  97. .RE
  98. .PP
  99. .B \-run-cleanup-tasks
  100. .RS 4
  101. Run cleanup tasks (delete old sessions and archive old entries)\&.
  102. .RE
  103. .PP
  104. .B \-v
  105. .RS 4
  106. Show application version\&.
  107. .RE
  108. .PP
  109. .B \-version
  110. .RS 4
  111. Show application version\&.
  112. .RE
  113. .SH CONFIGURATION FILE
  114. The configuration file is a text file that follows these rules:
  115. .LP
  116. - Miniflux expects each line to be in KEY=VALUE format.
  117. .br
  118. - Lines beginning with # are processed as comments and ignored.
  119. .br
  120. - Blank lines are ignored.
  121. .br
  122. - There is no variable interpolation.
  123. .PP
  124. Keys are the same as the environment variables described below\&.
  125. .br
  126. Environment variables override the values defined in the config file\&.
  127. .SH ENVIRONMENT
  128. Boolean options accept the following values (case-insensitive):
  129. 1/0, yes/no, true/false, on/off\&.
  130. .br
  131. For variables ending in \fB_FILE\fR, the value is a path to a file
  132. that contains the corresponding secret value\&.
  133. .TP
  134. .B ADMIN_PASSWORD
  135. Admin user password, used only if \fBCREATE_ADMIN\fR is enabled\&.
  136. .br
  137. Default is empty\&.
  138. .TP
  139. .B ADMIN_PASSWORD_FILE
  140. Path to a secret key exposed as a file, it should contain the
  141. \fBADMIN_PASSWORD\fR value\&.
  142. .br
  143. Default is empty\&.
  144. .TP
  145. .B ADMIN_USERNAME
  146. Admin user login, used only if \fBCREATE_ADMIN\fR is enabled\&.
  147. .br
  148. Default is empty\&.
  149. .TP
  150. .B ADMIN_USERNAME_FILE
  151. Path to a secret key exposed as a file, it should contain the
  152. \fBADMIN_USERNAME\fR value\&.
  153. .br
  154. Default is empty\&.
  155. .TP
  156. .B AUTH_PROXY_HEADER
  157. Proxy authentication HTTP header\&.
  158. .br
  159. The option \fBTRUSTED_REVERSE_PROXY_NETWORKS\fR must be configured
  160. to allow the proxy to authenticate users\&.
  161. .br
  162. Default is empty.
  163. .TP
  164. .B AUTH_PROXY_USER_CREATION
  165. Set to 1 to create users based on proxy authentication information\&.
  166. .br
  167. When disabled, users must already exist in Miniflux to sign in
  168. through the proxy\&.
  169. .br
  170. Disabled by default\&.
  171. .TP
  172. .B BASE_URL
  173. Base URL to generate HTML links and base path for cookies\&.
  174. .br
  175. Default is http://localhost\&.
  176. .TP
  177. .B BATCH_SIZE
  178. Number of feeds to send to the queue for each interval\&.
  179. .br
  180. Default is 100 feeds\&.
  181. .TP
  182. .B CERT_DOMAIN
  183. Use Let's Encrypt to get automatically a certificate for this domain\&.
  184. .br
  185. Default is empty\&.
  186. .TP
  187. .B CERT_FILE
  188. Path to SSL certificate\&.
  189. .br
  190. Default is empty\&.
  191. .TP
  192. .B CLEANUP_ARCHIVE_BATCH_SIZE
  193. Number of entries to archive for each job interval\&.
  194. .br
  195. Default is 10000 entries\&.
  196. .TP
  197. .B CLEANUP_ARCHIVE_READ_DAYS
  198. Number of days before the cleanup job archives read entries\&.
  199. .br
  200. Archiving deletes non-bookmarked, non-shared read entries from the
  201. database and records a tombstone to prevent the same entry from being
  202. imported again during a later feed refresh\&.
  203. .br
  204. Set to -1 to disable automatic archiving of read entries\&.
  205. .br
  206. Default is 60 days\&.
  207. .TP
  208. .B CLEANUP_ARCHIVE_UNREAD_DAYS
  209. Number of days before the cleanup job archives unread entries\&.
  210. .br
  211. Archiving deletes non-bookmarked, non-shared unread entries from the
  212. database and records a tombstone to prevent the same entry from being
  213. imported again during a later feed refresh\&.
  214. .br
  215. Set to -1 to disable automatic archiving of unread entries\&.
  216. .br
  217. Default is 180 days\&.
  218. .TP
  219. .B CLEANUP_FREQUENCY_HOURS
  220. Cleanup job frequency. Remove old sessions and archive entries\&.
  221. .br
  222. Default is 24 hours\&.
  223. .TP
  224. .B CLEANUP_REMOVE_SESSIONS_DAYS
  225. Number of days after removing old sessions from the database\&.
  226. .br
  227. Default is 30 days\&.
  228. .TP
  229. .B CREATE_ADMIN
  230. Set to 1 to create an admin user from environment variables\&.
  231. .br
  232. Disabled by default\&.
  233. .TP
  234. .B DATABASE_CONNECTION_LIFETIME
  235. Set the maximum amount of time a connection may be reused\&.
  236. .br
  237. Default is 5 minutes\&.
  238. .TP
  239. .B DATABASE_MAX_CONNS
  240. Maximum number of database connections\&.
  241. .br
  242. Default is 20\&.
  243. .TP
  244. .B DATABASE_MIN_CONNS
  245. Minimum number of database connections\&.
  246. .br
  247. Default is 1\&.
  248. .TP
  249. .B DATABASE_URL
  250. PostgreSQL connection parameters\&.
  251. .br
  252. Default is "user=postgres password=postgres dbname=miniflux2 sslmode=disable"\&.
  253. .TP
  254. .B DATABASE_URL_FILE
  255. Path to a secret key exposed as a file, it should contain the
  256. \fBDATABASE_URL\fR value\&.
  257. .br
  258. Default is empty\&.
  259. .TP
  260. .B DISABLE_API
  261. Disable miniflux's API\&.
  262. .br
  263. Default is false (The API is enabled)\&.
  264. .TP
  265. .B DISABLE_HSTS
  266. Disable HTTP Strict Transport Security header if \fBHTTPS\fR is set\&.
  267. .br
  268. Default is false (The HSTS is enabled)\&.
  269. .TP
  270. .B DISABLE_HTTP_SERVICE
  271. Set the value to 1 to disable the HTTP service\&.
  272. .br
  273. Default is false (The HTTP service is enabled)\&.
  274. .TP
  275. .B DISABLE_LOCAL_AUTH
  276. Disable local authentication\&.
  277. .br
  278. When set to true, the username/password form is hidden from
  279. the login screen, and the options to change username/password
  280. or unlink OAuth2 account are hidden from the settings page.
  281. .br
  282. This option requires an alternative authentication source
  283. such as OAuth2 or auth proxy\&.
  284. .br
  285. If remote user creation is disabled, only existing users can sign in\&.
  286. .br
  287. Default is false\&.
  288. .TP
  289. .B DISABLE_SCHEDULER_SERVICE
  290. Set the value to 1 to disable the internal scheduler service\&.
  291. .br
  292. Default is false (The internal scheduler service is enabled)\&.
  293. .TP
  294. .B FETCHER_ALLOW_PRIVATE_NETWORKS
  295. Set to 1 to allow outgoing fetcher requests to private or loopback networks\&.
  296. .br
  297. Disabled by default, private networks are refused\&.
  298. .TP
  299. .B FETCH_BILIBILI_WATCH_TIME
  300. Set the value to 1 to scrape video duration from Bilibili website and
  301. use it as a reading time\&.
  302. .br
  303. Disabled by default\&.
  304. .TP
  305. .B FETCH_NEBULA_WATCH_TIME
  306. Set the value to 1 to scrape video duration from Nebula website and
  307. use it as a reading time\&.
  308. .br
  309. Disabled by default\&.
  310. .TP
  311. .B FETCH_ODYSEE_WATCH_TIME
  312. Set the value to 1 to scrape video duration from Odysee website and
  313. use it as a reading time\&.
  314. .br
  315. Disabled by default\&.
  316. .TP
  317. .B FETCH_YOUTUBE_WATCH_TIME
  318. Set the value to 1 to scrape video duration from YouTube website and
  319. use it as a reading time\&.
  320. .br
  321. Disabled by default\&.
  322. .TP
  323. .B FORCE_REFRESH_INTERVAL
  324. The minimum interval for manual refresh\&.
  325. .br
  326. Default is 30 minutes\&.
  327. .TP
  328. .B HTTP_CLIENT_MAX_BODY_SIZE
  329. Maximum body size for HTTP requests in Mebibyte (MiB)\&.
  330. .br
  331. Default is 15 MiB\&.
  332. .TP
  333. .B HTTP_CLIENT_PROXIES
  334. Enable proxy rotation for outgoing requests by providing a
  335. comma-separated list of proxy URLs\&.
  336. .br
  337. Default is empty\&.
  338. .TP
  339. .B HTTP_CLIENT_PROXY
  340. Proxy URL to use when the "Fetch via proxy" feed option is enabled\&.
  341. .br
  342. Default is empty\&.
  343. .TP
  344. .B HTTP_CLIENT_TIMEOUT
  345. Time limit in seconds before the HTTP client cancels the request\&.
  346. .br
  347. Default is 20 seconds\&.
  348. .TP
  349. .B HTTP_CLIENT_USER_AGENT
  350. The default User-Agent header to use for the HTTP client.
  351. Can be overridden in per-feed settings\&.
  352. .br
  353. When empty, Miniflux uses a default User-Agent that includes
  354. the Miniflux version\&.
  355. .br
  356. Default is empty.
  357. .TP
  358. .B HTTP_SERVER_TIMEOUT
  359. Read, write, and idle timeout in seconds for the HTTP server\&.
  360. .br
  361. Default is 300 seconds\&.
  362. .TP
  363. .B HTTPS
  364. Forces cookies to use secure flag and send HSTS header\&.
  365. .br
  366. Default is disabled\&.
  367. .TP
  368. .B INTEGRATION_ALLOW_PRIVATE_NETWORKS
  369. Set to 1 to allow outgoing integration requests to private
  370. or loopback networks\&.
  371. .br
  372. Disabled by default, private networks are refused\&.
  373. .TP
  374. .B INVIDIOUS_INSTANCE
  375. Set a custom invidious instance to use\&.
  376. .br
  377. Default is yewtu.be\&.
  378. .TP
  379. .B KEY_FILE
  380. Path to SSL private key\&.
  381. .br
  382. Default is empty\&.
  383. .TP
  384. .B LISTEN_ADDR
  385. Address to listen on.
  386. Use absolute path to listen on Unix socket
  387. (/var/run/miniflux.sock)\&.
  388. .br
  389. Multiple addresses can be specified, separated by commas.
  390. For example: 127.0.0.1:8080, 127.0.0.1:8081\&.
  391. .br
  392. Default is 127.0.0.1:8080\&.
  393. .TP
  394. .B LOG_DATE_TIME
  395. Display the date and time in log messages\&.
  396. .br
  397. Disabled by default\&.
  398. .TP
  399. .B LOG_FILE
  400. Supported values are "stderr", "stdout", or a file name\&.
  401. .br
  402. Default is "stderr"\&.
  403. .TP
  404. .B LOG_FORMAT
  405. Supported log formats are "text" or "json"\&.
  406. .br
  407. Default is "text"\&.
  408. .TP
  409. .B LOG_LEVEL
  410. Supported values are "debug", "info", "warning", or "error"\&.
  411. .br
  412. Default is "info"\&.
  413. .TP
  414. .B MAINTENANCE_MESSAGE
  415. Define a custom maintenance message\&.
  416. .br
  417. Default is "Miniflux is currently under maintenance"\&.
  418. .TP
  419. .B MAINTENANCE_MODE
  420. Set to 1 to enable maintenance mode\&.
  421. .br
  422. Disabled by default\&.
  423. .TP
  424. .B MEDIA_PROXY_CUSTOM_URL
  425. Sets an external server to proxy media through\&.
  426. .br
  427. Default is empty, Miniflux does the proxying\&.
  428. .TP
  429. .B MEDIA_PROXY_HTTP_CLIENT_TIMEOUT
  430. Time limit in seconds before the media proxy HTTP client cancels the request\&.
  431. .br
  432. Default is 120 seconds\&.
  433. .TP
  434. .B MEDIA_PROXY_RESOURCE_TYPES
  435. A comma-separated list of media types to proxify.
  436. Supported values are: image, audio, video\&.
  437. .br
  438. Default is image\&.
  439. .TP
  440. .B MEDIA_PROXY_MODE
  441. Possible values: http-only, all, or none\&.
  442. .br
  443. Default is http-only\&.
  444. .TP
  445. .B MEDIA_PROXY_PRIVATE_KEY
  446. Set a custom private key used to sign proxified media URLs\&.
  447. .br
  448. By default, a secret key is randomly generated during startup\&.
  449. .TP
  450. .B METRICS_ALLOWED_NETWORKS
  451. List of networks allowed to access the metrics endpoint
  452. (comma-separated values)\&.
  453. .br
  454. Default is 127.0.0.1/8\&.
  455. .TP
  456. .B METRICS_COLLECTOR
  457. Set to 1 to enable metrics collector. Expose a /metrics endpoint for Prometheus.
  458. .br
  459. Disabled by default\&.
  460. .TP
  461. .B METRICS_PASSWORD
  462. Metrics endpoint password for basic HTTP authentication\&.
  463. .br
  464. Default is empty\&.
  465. .TP
  466. .B METRICS_PASSWORD_FILE
  467. Path to a file that contains the password for the metrics
  468. endpoint HTTP authentication\&.
  469. .br
  470. Default is empty\&.
  471. .TP
  472. .B METRICS_REFRESH_INTERVAL
  473. Refresh interval to collect database metrics\&.
  474. .br
  475. Default is 60 seconds\&.
  476. .TP
  477. .B METRICS_USERNAME
  478. Metrics endpoint username for basic HTTP authentication\&.
  479. .br
  480. Default is empty\&.
  481. .TP
  482. .B METRICS_USERNAME_FILE
  483. Path to a file that contains the username for the metrics
  484. endpoint HTTP authentication\&.
  485. .br
  486. Default is empty\&.
  487. .TP
  488. .B OAUTH2_CLIENT_ID
  489. OAuth2 client ID\&.
  490. .br
  491. Default is empty\&.
  492. .TP
  493. .B OAUTH2_CLIENT_ID_FILE
  494. Path to a secret key exposed as a file, it should contain the
  495. \fBOAUTH2_CLIENT_ID\fR value\&.
  496. .br
  497. Default is empty\&.
  498. .TP
  499. .B OAUTH2_CLIENT_SECRET
  500. OAuth2 client secret\&.
  501. .br
  502. Default is empty\&.
  503. .TP
  504. .B OAUTH2_CLIENT_SECRET_FILE
  505. Path to a secret key exposed as a file, it should contain the
  506. \fBOAUTH2_CLIENT_SECRET\fR value\&.
  507. .br
  508. Default is empty\&.
  509. .TP
  510. .B OAUTH2_OIDC_DISCOVERY_ENDPOINT
  511. OpenID Connect discovery endpoint\&.
  512. .br
  513. Default is empty\&.
  514. .TP
  515. .B OAUTH2_OIDC_PROVIDER_NAME
  516. Name to display for the OIDC provider\&.
  517. .br
  518. Default is "OpenID Connect"\&.
  519. .TP
  520. .B OAUTH2_PROVIDER
  521. Possible values are "google" or "oidc"\&.
  522. .br
  523. Default is empty\&.
  524. .TP
  525. .B OAUTH2_REDIRECT_URL
  526. OAuth2 redirect URL\&.
  527. .br
  528. This URL must be registered with the provider and is
  529. something like
  530. https://miniflux.example.org/oauth2/oidc/callback\&.
  531. .br
  532. Default is empty\&.
  533. .TP
  534. .B OAUTH2_USER_CREATION
  535. Set to 1 to authorize OAuth2 user creation\&.
  536. .br
  537. When disabled, users must already exist in Miniflux or have
  538. a linked OAuth2 account to sign in\&.
  539. .br
  540. Disabled by default\&.
  541. .TP
  542. .B POLLING_FREQUENCY
  543. Interval for the background job scheduler.
  544. .br
  545. Determines how often a batch of feeds is selected for refresh,
  546. based on their last refresh time\&.
  547. .br
  548. Default is 60 minutes\&.
  549. .TP
  550. .B POLLING_LIMIT_PER_HOST
  551. Limits the number of concurrent requests to the same hostname
  552. when polling feeds.
  553. .br
  554. This helps prevent overwhelming a single server during batch
  555. processing by the worker pool.
  556. .br
  557. Default is 0 (disabled)\&.
  558. .TP
  559. .B POLLING_PARSING_ERROR_LIMIT
  560. The maximum number of parsing errors that the program will
  561. try before stopping polling a feed.
  562. .br
  563. Once the limit is reached, the user must refresh the feed
  564. manually. Set to 0 for unlimited.
  565. .br
  566. Default is 3\&.
  567. .TP
  568. .B POLLING_SCHEDULER
  569. Determines the strategy used to schedule feed polling.
  570. .br
  571. Supported values are "round_robin" and "entry_frequency".
  572. .br
  573. - "round_robin": Feeds are polled in a fixed, rotating order.
  574. .br
  575. - "entry_frequency": The polling interval for each feed is
  576. based on the average update frequency over the past week.
  577. .br
  578. The number of feeds polled in a given period is limited by
  579. the POLLING_FREQUENCY and BATCH_SIZE settings.
  580. .br
  581. Regardless of the scheduler used, the total number of polled
  582. feeds will not exceed the maximum allowed per polling cycle.
  583. .br
  584. Default is "round_robin"\&.
  585. .TP
  586. .B PORT
  587. Override \fBLISTEN_ADDR\fR to \fB0.0.0.0:$PORT\fR\&.
  588. .br
  589. Default is empty\&.
  590. .TP
  591. .B RUN_MIGRATIONS
  592. Set to 1 to run database migrations\&.
  593. .br
  594. Disabled by default\&.
  595. .TP
  596. .B SCHEDULER_ENTRY_FREQUENCY_FACTOR
  597. Factor to increase refresh frequency for the entry frequency scheduler\&.
  598. .br
  599. Default is 1\&.
  600. .TP
  601. .B SCHEDULER_ENTRY_FREQUENCY_MAX_INTERVAL
  602. Maximum interval in minutes for the entry frequency scheduler\&.
  603. .br
  604. Default is 1440 minutes (24 hours)\&.
  605. .TP
  606. .B SCHEDULER_ENTRY_FREQUENCY_MIN_INTERVAL
  607. Minimum interval in minutes for the entry frequency scheduler\&.
  608. .br
  609. Default is 5 minutes\&.
  610. .TP
  611. .B SCHEDULER_ROUND_ROBIN_MAX_INTERVAL
  612. Maximum interval in minutes for the round robin scheduler\&.
  613. .br
  614. Default is 1440 minutes (24 hours)\&.
  615. .TP
  616. .B SCHEDULER_ROUND_ROBIN_MIN_INTERVAL
  617. Minimum interval in minutes for the round robin scheduler\&.
  618. .br
  619. Default is 60 minutes\&.
  620. .TP
  621. .B TRUSTED_REVERSE_PROXY_NETWORKS
  622. List of networks (CIDR notation) allowed to use the proxy
  623. authentication header, \fBX-Forwarded-For\fR,
  624. \fBX-Forwarded-Proto\fR, and \fBX-Real-Ip\fR headers\&.
  625. .br
  626. Default is empty\&.
  627. .TP
  628. .B WATCHDOG
  629. Enable or disable Systemd watchdog\&.
  630. .br
  631. Enabled by default\&.
  632. .TP
  633. .B WEBAUTHN
  634. Enable or disable WebAuthn/Passkey authentication\&.
  635. .br
  636. You must provide a username on the login page if you are
  637. using non-residential keys.
  638. However, this is not required for discoverable credentials\&.
  639. .br
  640. Default is disabled\&.
  641. .TP
  642. .B WORKER_POOL_SIZE
  643. Number of background workers\&.
  644. .br
  645. Default is 16 workers\&.
  646. .TP
  647. .B YOUTUBE_API_KEY
  648. YouTube API key for use with FETCH_YOUTUBE_WATCH_TIME.
  649. If nonempty, the duration will be fetched from the YouTube API.
  650. Otherwise, the duration will be fetched from the YouTube
  651. website\&.
  652. .br
  653. Default is empty\&.
  654. .TP
  655. .B YOUTUBE_EMBED_URL_OVERRIDE
  656. YouTube URL which will be used for embeds\&.
  657. .br
  658. Default is https://www.youtube-nocookie.com/embed/\&.
  659. .SH AUTHORS
  660. Miniflux is developed and maintained by Fr\['e]d\['e]ric Guillot
  661. with contributions from the Miniflux community\&.
  662. .SH "COPYRIGHT"
  663. Miniflux is released under the Apache 2.0 license\&.