Caddy V2 Help Me

emby.xxx.me {
encode gzip
push
  tls xxx {
  dns cloudflare xxx
}
                log {
                        output file /config/log/caddy.e.log {
                                roll true                               # Rotate logs, enabled by default
                                roll_size_mb 5                  # Set max size 5 MB
                                roll_gzip true                  # Whether to compress rolled files
                                roll_local_time true    # Use localhost time
                                roll_keep 2                             # Keep at most 2 log files
                                roll_keep_days 7                # Keep log files for 7 days
                        }
                }
    reverse_proxy 127.0.0.1:8096 {
    header_up Host {host}
    header_up X-Real-IP {remote_host}
    header_up X-Forwarded-For {remote_host}
    header_up X-Forwarded-Proto {scheme}
}
}

I need add from nginx.
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;

This topic was automatically closed after 30 days. New replies are no longer allowed.