Documentation

Main Settings

Configure Huntarr's core settings including authentication, UI preferences, and system options.

Accessing Settings

Navigate to Settings > Main from the sidebar.

General Settings

SettingDefaultDescription
TimezoneUTCUsed for scheduling and log timestamps
Web Server Port9705Port Huntarr listens on
Web Server Threads8Number of worker threads (4-32)
Base URL/For reverse proxy setups (e.g., /huntarr)

Authentication

SettingDefaultDescription
Session Timeout24 hoursHow long before requiring re-login
Two-Factor AuthDisabledEnable 2FA for additional security
Plex SSODisabledAllow login via Plex account

UI Preferences

SettingDefaultDescription
ThemeDarkUI color theme
Dashboard ViewListDefault home page view (List or Grid)
Logo URLDefaultCustom logo URL

Reverse Proxy Setup

If you're running Huntarr behind a reverse proxy (Nginx, Caddy, Traefik):

  1. Set the Base URL in Settings (e.g., /huntarr)
  2. Configure your proxy to forward to port 9705
  3. Example Nginx config:
location /huntarr/ {
    proxy_pass http://localhost:9705/;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
}
Base URL

When using a Base URL, all Huntarr URLs will be prefixed. For example, http://your-server/huntarr/ instead of http://your-server:9705/