You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I Cannot get the "instruction" section to show when using a reverse proxy. When accessing the application using the local IP address, it works fine.
The untare android app, which is using my public domain name and therefore is going through my reverse proxy, seems to find the directions block.
I am using the supplied docker setup with the dedicated nginx container. I have a separate reverse proxy in a separate proxmox container. Images in tandoor are loading fine.
Any help would be appreciated, thank you
Tandoor Version
1.5.24
OS Version
Ubuntu 22.04
Setup
Docker / Docker-Compose
Reverse Proxy
Others (please state below)
Other
nginx, seperate proxmox container
Environment file
# ---------------------------------------------------------------------------# This template contains only required options.# Visit the docs to find more https://docs.tandoor.dev/system/configuration/# ---------------------------------------------------------------------------# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
SECRET_KEY=blah
# allowed hosts (see documentation), should be set to your hostname(s) but might be * (default) for some proxies/providers
ALLOWED_HOSTS=*# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
DB_ENGINE=django.db.backends.postgresql
POSTGRES_HOST=db_recipes
POSTGRES_DB=djangodb
POSTGRES_PORT=5432
POSTGRES_USER=djangouser
POSTGRES_PASSWORD=blah
#shouldn't be needed aymore, my issue was my host reverse proxy not needing the /media location#GUNICORN_MEDIA=0
Docker-Compose file
services:
db_recipes:
restart: always
image: postgres:16-alpine
volumes:
- ./postgresql:/var/lib/postgresql/data
env_file:
- ./.env
web_recipes:
restart: always
image: vabene1111/recipes
env_file:
- ./.env
volumes:
- staticfiles:/opt/recipes/staticfiles
# Do not make this a bind mount, see https://docs.tandoor.dev/install/docker/#volumes-vs-bind-mounts
- nginx_config:/opt/recipes/nginx/conf.d
- ./mediafiles:/opt/recipes/mediafiles
depends_on:
- db_recipes
nginx_recipes:
image: nginx:mainline-alpine
restart: always
ports:
- 8080:80
env_file:
- ./.env
depends_on:
- web_recipes
volumes:
# Do not make this a bind mount, see https://docs.tandoor.dev/install/docker/#volumes-vs-bind-mounts
- nginx_config:/etc/nginx/conf.d:ro
- staticfiles:/static:ro
- ./mediafiles:/media:ro
volumes:
nginx_config:
staticfiles:
Issue
Hello,
I Cannot get the "instruction" section to show when using a reverse proxy. When accessing the application using the local IP address, it works fine.
The untare android app, which is using my public domain name and therefore is going through my reverse proxy, seems to find the directions block.
I am using the supplied docker setup with the dedicated nginx container. I have a separate reverse proxy in a separate proxmox container. Images in tandoor are loading fine.
Any help would be appreciated, thank you
Tandoor Version
1.5.24
OS Version
Ubuntu 22.04
Setup
Docker / Docker-Compose
Reverse Proxy
Others (please state below)
Other
nginx, seperate proxmox container
Environment file
Docker-Compose file
Relevant logs
The text was updated successfully, but these errors were encountered: