mirror of
https://github.com/openwrt/packages.git
synced 2025-10-02 04:10:26 +00:00
add BASE_URL to the init script, this is useful when running in a subpath and not directly on the root of a domain Signed-off-by: Michal Vasilek <michal.vasilek@nic.cz>
23 lines
520 B
Plaintext
23 lines
520 B
Plaintext
package miniflux
|
|
|
|
config miniflux main
|
|
# if set, all other uci settings are ignored
|
|
option config_file ''
|
|
|
|
option listen_address '127.0.0.1:5433'
|
|
|
|
option base_url ''
|
|
|
|
# run migrations on each start, disabling this will make miniflux fail to
|
|
# start on the next upgrade until migrations are ran manually
|
|
option migrate 1
|
|
|
|
config miniflux database
|
|
# if set, all other options in this section will be ignored
|
|
option url ''
|
|
|
|
option user miniflux
|
|
option password ''
|
|
option sslmode disable
|
|
option dbname miniflux
|