Hey everyone! I've been trying to set up my Plex Media Center on Ubuntu Server through a Proxmox VM, following a guide I found. Most of it has gone smoothly, but I've hit a snag when trying to configure the Homepage (using part 2 of the guide). I ran into an issue with "HOMEPAGE_ALLOWED_HOSTS" while trying to view the Homepage. I made sure to add it to my .env and compose file like so: in my .env I wrote `HOMEPAGE_ALLOWED_HOSTS=192.168.90.201:3000` and in homepage.yml, I wrote `HOMEPAGE_ALLOWED_HOSTS=192.168.90.201`. However, these changes didn't seem to reflect in Portainer, so I had to update everything from there, despite restarting the containers. When checking the logs using a command from the guide, I got an error: `exec /usr/local/bin/docker-entrypoint.sh: operation not permitted`. As I'm new to Docker and Linux, I'm really struggling to solve this issue. Any advice or thoughts would be much appreciated!
2 Answers
I recommend that you check the exact error on Stack Overflow. They usually have good insights. Did you try their suggested solutions? Let me know how it went!
When following such a detailed guide, don't hesitate to reach out to the author for help. Also, I noticed the `homepage.yml` file—you should clarify whether it's a compose file or just a config. For testing, try setting `HOMEPAGE_ALLOWED_HOSTS=*` to see if that changes anything. Also, make sure your variable matches your URL exactly without the protocol. Just remember, with Portainer, if you're making changes, stopping and starting won't apply those unless you also recreate the container.
Good point! I’ll adjust that variable and look into the Portainer steps. Thanks!
I checked it out but found it unrelated. I'm definitely struggling to wrap my head around Docker and Linux right now.