Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General admin page missing when used with traefik proxy #1490

Closed
Tenyun opened this issue Jun 8, 2024 · 2 comments
Closed

General admin page missing when used with traefik proxy #1490

Tenyun opened this issue Jun 8, 2024 · 2 comments

Comments

@Tenyun
Copy link

Tenyun commented Jun 8, 2024

Describe the bug
Freshly installed app behind traefik cannot access the general admin page (I get 404 when I call the url directly)

To Reproduce
Steps to reproduce the behavior:

  1. Install with traefik
  2. Login with [email protected]
  3. Missing General under Settings

Expected behavior
Show General Settings when logged in

Environment (please complete the following information):

version: "3.3"
services:
 speedtest-tracker:
   image: lscr.io/linuxserver/speedtest-tracker:latest
   container_name: speedtest-tracker
   restart: unless-stopped
   networks:
     - proxy
   volumes:
     - /etc/localtime:/etc/localtime:ro
     - speedtest-tracker-config:/config
     - speedtest-tracker-web:/etc/ssl/web
   environment:
     - APP_DEBUG=true
     - APP_NAME=Home-Tracker
     - APP_KEY=*****
     - PUBLIC_DASHBOARD=true
     - PUID=1000
     - PGID=1000
     - DB_CONNECTION=pgsql
     - DB_HOST=st-db
     - DB_PORT=5432
     - DB_DATABASE=speedtest_tracker
     - DB_USERNAME=*****
     - DB_PASSWORD=*****
     - TZ=Europe/Berlin
   labels:
     - traefik.enable=true
     - traefik.http.routers.speedtest-tracker.entrypoints=http
     - traefik.http.routers.speedtest-tracker.rule=Host(`st.local.example.com`)
     - traefik.http.middlewares.speedtest-tracker-https-redirect.redirectscheme.scheme=https
     - traefik.http.routers.speedtest-tracker.middlewares=speedtest-tracker-https-redirect
     - traefik.http.routers.speedtest-tracker-secure.entrypoints=https
     - traefik.http.routers.speedtest-tracker-secure.rule=Host(`st.local.example.com`)
     - traefik.http.routers.speedtest-tracker-secure.tls=true
     - traefik.http.routers.speedtest-tracker-secure.service=speedtest-tracker
     - traefik.http.services.speedtest-tracker.loadbalancer.server.port=80
     - traefik.docker.network=proxy
   depends_on:
     - st-db
 st-db:
   image: postgres:15
   restart: always
   networks:
     - proxy
   environment:
     - POSTGRES_DB=speedtest_tracker
     - POSTGRES_USER=*****
     - POSTGRES_PASSWORD=*****
   volumes:
     - speedtest-db:/var/lib/postgresql/data
volumes:
 speedtest-tracker-config: null
 speedtest-tracker-web: null
 speedtest-db: null
networks:
 proxy:
   external: true

Screenshots
screenshot-2024Jun08-112035

Logs
If applicable, check the logs for any error that might of occurred.

Additional context
Add any other context about the problem here.

@svenvg93
Copy link
Contributor

svenvg93 commented Jun 8, 2024

As of v0.20.x the General admin page is replaced with the environment variables only. The page does not exist anymore. see #1470 and #1464

@Tenyun
Copy link
Author

Tenyun commented Jun 8, 2024

Thank you. I totally missed that.

@Tenyun Tenyun closed this as completed Jun 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants