LogoLogo
APIDemoOfficial SiteDiscord
  • Introduction
  • Want to help?
  • ๐Ÿ’พInstallation
    • Prerequisites
      • Installing Webservers
        • Organizr & Dependency Installer
        • Nginx
        • Apache
        • Caddy
      • Installing PHP
    • Installing Organizr
  • ๐Ÿ“ŒGetting started
  • First Time Setup
  • Tab Management
  • ๐Ÿค–Features
    • Authentication Backend
      • Plex Backend
      • LDAP Backend
    • Server Authentication
      • Nginx Server Authentication
      • Caddy Server Authentication
      • Traefik Server Authentication
    • SSO
      • Plex SSO
      • Tautulli SSO
      • Overseerr SSO
      • Petio SSO
      • Ombi SSO
      • Jellyfin SSO
      • Komga SSO
      • Proxy Auth SSO
        • Grafana SSO
        • NZBHydra2 SSO
        • Calibre SSO
      • Troubleshooting SSO
    • Homepage
      • Sonarr Homepage Item
      • Plex Homepage Item
      • HealthChecks Homepage Item
    • API Socks
    • Backup & Restore
    • Custom Error Pages
    • Fail2Ban Integration
  • ๐ŸงชTweaks
    • Tweaks
    • Hide custom text from specific groups
    • Optimizing PHP-FPM
  • ๐Ÿ†˜Help
    • Custom Work
      • Custom Pages
    • Tutorials
      • Reverse Proxies
    • FAQ
      • Organizr Requirements
      • Forgot my password
      • Organizr Login Error
      • Login Looping - SameSite Errors
      • Auth cookie is not used by other subdomains
      • Update available even though up to date
      • Migration Guide
  • ๐ŸŒ Development
    • Plugin Development
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Help
  2. FAQ

Auth cookie is not used by other subdomains

PreviousLogin Looping - SameSite ErrorsNextUpdate available even though up to date

Last updated 3 years ago

Was this helpful?

Caddy

This is caused by Caddy not adding the necessary headers when forwarding the login request to Organizr.

Using the "transparent" preset or manually adding the necessary headers solves the issue.

For Example:

organizr.example.com {
  proxy / http://organizr.internal {
    transparent
  }
}

See more:

๐Ÿ†˜
Here