Using image under a reverse HTTPS proxy #2099
-
Good evening, Is there any way to use that image under a reverse HTTPS proxy with self-signed certificate? Atm I'm getting errors from plugins like:
|
Beta Was this translation helpful? Give feedback.
Answered by
GamePlayer-8
Apr 26, 2023
Replies: 2 comments
-
Does this option help: https://github.com/itzg/docker-minecraft-server#http-proxy |
Beta Was this translation helpful? Give feedback.
0 replies
-
ENV CERT_URL="<URL>"
RUN cd /etc/ssl/certs/java && \
wget "$CERT_URL" -O browser.der && \
keytool -keystore cacerts -storepass changeit -noprompt -trustcacerts -importcert -alias squid -file browser.der && \
rm -f browser.der Since then, it works. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
GamePlayer-8
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PROXY
environment variable wasn't worked so far. Although I've build the image by adding:Since then, it works.