-
Notifications
You must be signed in to change notification settings - Fork 2
Configuration
This page explains how to configure RetroIPTVGuide after installation.
Open http://<server-ip>:5000 and sign in with the default admin credentials.
You are required to set a new password before the application can be used.
A tuner represents an IPTV source. At least one tuner must be configured before the guide will display channels.
- Log in as an administrator.
- Navigate to Tuner Management.
- Click Add Tuner.
- Provide the following:
| Field | Description |
|---|---|
| Name | A label for the tuner (e.g. ErsatzTV) |
| Playlist URL | URL to a .m3u or .m3u8 playlist |
| XMLTV URL | URL to an XMLTV .xml or .xml.gz EPG file |
- Click Save.
The guide will refresh using the new tuner's data.
- Playlists:
.m3u,.m3u8 - EPG: XMLTV
.xml, compressed.xml.gz
XMLTV URLs must begin with http:// or https://. Local file paths are not
supported through the UI.
Multiple tuners can be configured and combined. Use the Combined Tuner option to merge channels from several sources into a single guide view.
Each user account can be assigned a default tuner under User Management.
The Settings page provides controls for:
| Setting | Description |
|---|---|
| Theme | Choose a retro UI theme |
| Auto-scroll | Enable/disable automatic guide scrolling |
| Scroll speed | Adjust the guide scrolling rate |
| Display size | Adjust UI element sizes for TV/desktop use |
| Time zone | Displayed time zone for the guide |
When running via Docker the following environment variables are available in .env:
| Variable | Description | Example |
|---|---|---|
TZ |
Timezone | America/New_York |
FLASK_ENV |
Flask environment | production |
SECRET_KEY |
Session secret key | openssl rand -hex 32 |
RETROIPTV_DATA_DIR |
Path for persistent data | /app/config |
Generate a secure secret key:
openssl rand -hex 32By default RetroIPTVGuide stores SQLite databases and cached files in
/app/config (Docker) or the install directory (Linux).
The data directory contains:
| File | Description |
|---|---|
users.db |
User accounts and settings |
tuners.db |
Tuner configuration and EPG cache |
Mount these directories as Docker volumes to persist data across container updates:
volumes:
- ./config:/app/configAdmin accounts can manage user accounts from Admin → User Management:
- Add and remove users
- Assign default tuners per user
- Force a password change on next login
Tuner playlists and EPG data can be refreshed automatically. Configure the refresh interval in Tuner Management on a per-tuner basis.
- Virtual Channels — configure built-in virtual channels
- Troubleshooting — if something isn't working