-
DescriptionHello there, I just started using Homepage today and thank you for this wonderful project! I did a fresh install by using docker compose according to the official docs. But every time if I change anything in the settings, all the settings won't take effect. All other yaml files will take effect immediately. I tried to fully delete the container, and also prune the volume and networks. None of them worked. Steps to reproduce
homepage version0.6.33 Installation methodDocker ConfigurationJust like the docker compose file above Container LogsBrowser LogsNo response Troubleshootingn/a OtherNo response Before submitting, I have made sure to
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 13 replies
-
Im not sure why you opened a new bug report, this issue is not widespread and I suspect there is an issue with your setup. I cant reproduce it. I guess clicking the revalidate button in the bottom right does nothing? Did you check the browser console? Not sure if it will yield much but you can enable debug: environment:
LOG_LEVEL: debug |
Beta Was this translation helpful? Give feedback.
-
Thank you guys for all the answers, I have already fixed this, the reason why this was happening was because my Nginx will cache for the reverse proxy. I added two more lines to the reverse proxy and this got fixed: proxy_no_cache 1;
proxy_cache_bypass 1; |
Beta Was this translation helpful? Give feedback.
-
Seems there are separate issues, but thanks for posting your solution, I'll update the title to reflect this |
Beta Was this translation helpful? Give feedback.
-
This discussion has been automatically locked since there has not been any recent activity after it was closed. Please open a new discussion for related concerns. |
Beta Was this translation helpful? Give feedback.
Thank you guys for all the answers, I have already fixed this, the reason why this was happening was because my Nginx will cache for the reverse proxy. I added two more lines to the reverse proxy and this got fixed: