mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
* Rename tls.yml to tls.yaml Rename tls.yaml so it will be align to the entry in docker-compose-proxy.yml: volumes: - ./tls.yaml:/etc/traefik/tls.yaml To prevent error: error="error reading configuration file: /etc/traefik/tls.yaml - read /etc/traefik/tls.yaml: is a directory" * Update example.env Added option for SERVER_URL To prevent warning: WARN[0000] The "SERVER_DNS" variable is not set. Defaulting to a blank string. * Update example.env Change SERVER_URL to SERVER_DNS * Use .yml consistently --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
40 lines
1.0 KiB
Bash
40 lines
1.0 KiB
Bash
# Example of environment file for docker-compose
|
|
# Copy this file into your own `.env` file
|
|
|
|
# ================================
|
|
# FreshRSS
|
|
# ================================
|
|
|
|
ADMIN_EMAIL=admin@example.net
|
|
|
|
# Published port for development or local use (optional)
|
|
PUBLISHED_PORT=8080
|
|
|
|
# =========================================
|
|
# For automatic FreshRSS install (optional)
|
|
# =========================================
|
|
|
|
ADMIN_PASSWORD=freshrss
|
|
ADMIN_API_PASSWORD=freshrss
|
|
|
|
# Address at which the FreshRSS instance will be reachable:
|
|
BASE_URL=https://freshrss.example.net
|
|
SERVER_DNS=freshrss.example.net
|
|
|
|
# Database server (not relevant if using default SQLite)
|
|
# Use the name of the Docker container if running on the same machine
|
|
DB_HOST=freshrss-db
|
|
|
|
# ===========================================================
|
|
# Database credentials (not relevant if using default SQLite)
|
|
# ===========================================================
|
|
|
|
# Database to use
|
|
DB_BASE=freshrss
|
|
|
|
# User in the freshrss database
|
|
DB_USER=freshrss
|
|
|
|
# Password for the defined user
|
|
DB_PASSWORD=freshrss
|