Skip to content

Frigate not loading when using a subpath with a reverse proxy #3996

Closed Answered by bdoiron74
Mario1159 asked this question in Question
Discussion options

You must be logged in to vote

I've stumbled onto this thread searching for an answer to my question.

Seeing your "X-Ingress-Path" header option solved it for me.. and to avoid having to type the trailing slash, I'm using a redirect:

location = /frigate {
    return 302 /frigate/;
}

location /frigate/ {
  proxy_http_version 1.1;
  proxy_cache_bypass $http_upgrade;
  proxy_set_header Upgrade $http_upgrade;
  proxy_set_header Connection $http_connection;
  proxy_set_header Host $http_host;
  proxy_set_header X-Ingress-Path "/frigate";
  proxy_set_header Authorization "";
  proxy_pass https://frigate:5000/;
  access_log off;
}

Replies: 4 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@vajonam
Comment options

@newmindJP
Comment options

Comment options

You must be logged in to vote
0 replies
Answer selected by NickM-27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
4 participants