Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Accessing Tandoor via Nginx Proxy Manager#1165

towerhand started this conversation inGeneral
Discussion options

Has anybody correctly set up Tandoor to be accessed via a local domain using Nginx Proxy Manager? This is the only LXC created using the scripts from this repository that has given me trouble with Nginx Proxy Manager. I can only access it via IP:PORT instead of recipes.mydomain.com because the recipes get stuck in loading and don't display them.

You must be logged in to vote

Replies: 3 comments 1 reply

Comment options

I have exactly the same problem, did you ever found a solution?

You must be logged in to vote
1 reply
@towerhand
Comment options

I ended up creating the LXC again since mine was created using an older script that didn't have a fix included.

Comment options

It works for me. You've probably already made a similar entry in the file ‘/opt/tandoor/.env’, right?:
IF3IP3w1G2xxy4QD-grafik

ALLOWED_HOSTS=subdomain.domain.de,192.168.188.202

To my knowledge, there were no other special configurations.
2025-08-16_16-18
2025-08-16_16-19

You must be logged in to vote
0 replies
Comment options

In my case, I could not use Force SSL in Nginx Proxy Manager, since I use NPM behind a cloudflared forwarding and cloudflared handles the http --> https redirect. If I use Force SSL, an infinitive redirect loop would be created. However, after a update for the Tandoor installer script (#6892) yesterday, the following NPM config works for me

location / {        proxy_pass http://your_ip:port;        proxy_set_header Host $host;         proxy_set_header X-Forwarded-Proto https;          proxy_set_header X-Forwarded-Scheme https;        proxy_set_header X-Forwarded-Port  443;        proxy_set_header X-Real-IP $remote_addr;        proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;        client_max_body_size 100m;}

This is the Tandoor config I use

# ====== GENERAL SETTINGS ======# Erlaubt Anfragen von Ihrer DomainALLOWED_HOSTS=tandoor.domain.tld# ====== REVERSE PROXY SETTINGS ======# Ihre exakte Domain, ohne Slash am EndeCSRF_TRUSTED_ORIGINS=https://tandoor.domain.tld# Sagt Django, den X-Forwarded-Host Header vom Proxy zu verwendenUSE_X_FORWARDED_HOST=True
You must be logged in to vote
0 replies
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Category
General
Labels
None yet
3 participants
@towerhand@tefracky@Salus70

[8]ページ先頭

©2009-2025 Movatter.jp