-
Hi. I have a Gluetun installation with docker on Synology and I need to enable the log and change the port https://github.com/qdm12/gluetun/wiki/HTTP-control-server-options to display the data with Homepage gethomepage/homepage#512 I need change this parameters HTTP_CONTROL_SERVER_ADDRESS & HTTP_CONTROL_SERVER_LOG How can I do it? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
As mentioned in the linked PR: Then in your homepage-widget you have to specify the url including the port like |
Beta Was this translation helpful? Give feedback.
-
It doesn't work with port 8000. It's a very common port and I probably have another service there that it's conflicting with. What exactly would be the syntax to add those parameter to the docker-compose file? This for example? HTTP_CONTROL_SERVER_ADDRESS: 3853 |
Beta Was this translation helpful? Give feedback.
-
You might just want to leave it at default and map it to another host port. Like If you want to set the environment variable, u would do it like:
in your docker-compose file. |
Beta Was this translation helpful? Give feedback.
You might just want to leave it at default and map it to another host port. Like
3853:8000
.If you want to set the environment variable, u would do it like:
in your docker-compose file.