Dean

Results 36 comments of Dean

I have four separate servers running docker containers via docker-compose: 1. Edge Server 1 : NPM, PiHole, Wireguard, DuckDNS, Netdata 2. Edge Server 2 : NPM, PiHole, Wireguard, DuckDNS, Netdata...

@nikkopt Can you provide a little more detail? My journey was: 1. Create wildcard certificates for my domain 2. Add entries in Nginx Proxy Manager for all services 2.1. Ensure...

I added the following to my pi-hole docker-compose.yml: ``` environment: CORS_HOSTS: [example.com],homer.[example.com] ``` And now I get the following error in Homer: ``` Cross-Origin Request Blocked: The Same Origin Policy...

> Try adding the ' ' Well, it's actually this: docker-compose,yml ``` environment: - PIHOLE_DOMAIN=${PIHOLE_DOMAIN} - CORS_HOSTS=${CORS_HOSTS} - VIRTUAL_HOST=${VIRTUAL_HOST} ``` and this: .env ``` PIHOLE_DOMAIN=[example.com] CORS_HOSTS=[example.com],homer.[example.com] VIRTUAL_HOST=pihole.[example.com] ``` So that...

> Try adding the ' ' Well, it's actually this: docker-compose,yml ``` environment: - PIHOLE_DOMAIN=${PIHOLE_DOMAIN} - CORS_HOSTS=${CORS_HOSTS} - VIRTUAL_HOST=${VIRTUAL_HOST} ``` and this: .env ``` PIHOLE_DOMAIN=[example.com] CORS_HOSTS=[example.com],homer.[example.com] VIRTUAL_HOST=pihole.[example.com] ``` So that...

I fixed one of my issues. My docker-compose.yml for my pihole now looks like this: ``` environment: CORS_HOSTS: https://[example.com],https://homer.[example.com] ``` I still have the ``` Uncaught (in promise) TypeError: c...

That fixed it! 1. No **custom locations** entries in NPM 2. Set pihole environment variables to: ``` PIHOLE_DOMAIN=[example.org] CORS_HOSTS=[example.org]homer.[example.org],dashy.[example.org] VIRTUAL_HOST=pihole.[example.org] ``` Nicely done!

All very fair points. I have: * 4 AMCREST @ 4k * 6 Wyze V2 @ 1080p * 1 Wyze Pan @ 1080p * 1 Wyze V3 @ 1080p The...

I have the same issue. homer compose.yaml ``` services: homer: image: b4bz/homer:latest container_name: ${CONTAINER} hostname: ${CONTAINER}.${HOSTNAME} dns: ${DNS} ports: - 8888:8888 environment: - PORT=${PORT} volumes: - ${DIRECTORY_ASSETS}:/www/assets restart: unless-stopped labels:...

I have resolved this issue. For my pi-hole docker instances, I set the CORS hosts as follows: ``` CORS_HOSTS=example.com,homer.example.com,homeassistant.example.com ``` For my traefik docker instance, I created a file called...