Files
tuliprox/config/api-proxy.yml
T
euzuandGitHub eb2a017fa3 Network access restriction for api user (#728)
* Network access restriction for api user
* Fixed strm provider:// url bug
2026-04-23 21:15:59 +02:00

79 lines
2.5 KiB
YAML

server:
- name: default
protocol: http
host: ${env:TULIPROX_HOST_IP}
port: "8901"
timezone: Europe/Paris
message: Welcome to m3u-filter
- name: external
protocol: https
host: ${env:TULIPROX_DOMAIN}
port: "443"
timezone: Europe/Paris
message: Welcome to m3u-filter
user:
- target: iptv-org
credentials:
- username: local
password: localsecret
token: "77417"
proxy: reverse
output_clusters: [live, vod, series]
server: default
exp_date: 0
max_connections: 0
status: Active
ui_enabled: true
# network_access:
# allowed_networks:
# - "192.168.0.0/16"
# - "10.0.0.0/8"
- username: vpn-only
password: vpnsecret
proxy: reverse
output_clusters: [live, vod, series]
server: external
max_connections: 2
status: Active
# Network access restriction — uses OR logic: matching ANY allowed_networks
# OR ANY allowed_countries is sufficient for access.
#
# Private/VPN ranges must use CIDR notation (/16, /24, /32 for single IPv4s,
# /128 for a single IPv6, e.g. 2001:db8::/32).
# Country-based restrictions require GeoIP database to be configured.
# If GeoIP is unavailable and country restrictions exist, access is denied by default.
# To explicitly accept that risk globally, set this in config.yml:
#
# reverse_proxy:
# geoip:
# unavailable_policy: allow
#
# The policy is global, not per user. CIDR-only misses, unknown countries,
# and country mismatches still deny.
#
# Client IP is derived from X-Real-IP / X-Forwarded-For headers when behind
# a reverse proxy. Ensure your reverse proxy is configured to set these,
# otherwise network restrictions may not function correctly.
network_access:
allowed_networks:
- "10.200.0.0/16" # WireGuard VPN range
allowed_countries:
- DE # Germany
- AT # Austria
ui_enabled: false
# No network restrictions — allow from any source
- username: external
password: externalsecret
token: "77418"
proxy: reverse
output_clusters: [live, vod, series]
server: external
exp_date: 0
max_connections: 0
status: Active
ui_enabled: true
use_user_db: false