-
Notifications
You must be signed in to change notification settings - Fork 190
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
Fix issue that proxy port is removed if it matches the standard port #3027
Conversation
eb171d1
to
df01931
Compare
docker/Dockerfile
Outdated
@@ -5,7 +5,7 @@ FROM nextcloud:30-apache | |||
|
|||
COPY entrypoint.sh / | |||
|
|||
RUN apt-get update && apt-get install -y sqlite3 | |||
RUN apt-get update && apt-get install -y sqlite3 nano |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is user preference, do we really want to install this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure I just want a proper setup within the docker container to do stuff, I will drop it from this PR and check for alternatives
db5f551
to
aad721c
Compare
Signed-off-by: Benjamin Brahmer <[email protected]>
Signed-off-by: Benjamin Brahmer <[email protected]>
Signed-off-by: Benjamin Brahmer <[email protected]>
Changed - add explanations for the individual values in the feed information table (#3031) - show error message from `opml` import in web-ui (#3036) - disable new setting "nextUpdateTime" introduced in #2999 by default (#3039) Fixed - fix proxy port removed if standard port for the protocol (#3027) - background updater may stumble over invalid datetime strings from feeds (#3028) Signed-off-by: Benjamin Brahmer <[email protected]>
Changed - add explanations for the individual values in the feed information table (#3031) - show error message from `opml` import in web-ui (#3036) - disable new setting "nextUpdateTime" introduced in #2999 by default (#3039) Fixed - fix proxy port removed if standard port for the protocol (#3027) - background updater may stumble over invalid datetime strings from feeds (#3028) Signed-off-by: Benjamin Brahmer <[email protected]>
Summary
Add debug logging for the proxy configuration
And add nano to the docker image to edit files.
Checklist