You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@dustymabe sugested using tinyproxy similar to:
##########################
Build a container to run a proxy from and run proxy
podman build -t tinyproxy -f - <<EOF
FROM registry.fedoraproject.org/fedora:37
RUN dnf install -y tinyproxy
# Allow requests from all hosts
RUN sed -i 's|^Allow 127.0.0.1$|Allow 0.0.0.0/0|' /etc/tinyproxy/tinyproxy.conf
# Remove logfile specification so it will log to stdout
RUN sed -i 's|^LogFile|#LogFile|' /etc/tinyproxy/tinyproxy.conf
RUN mkdir -p /run/tinyproxy
CMD [ "/usr/bin/tinyproxy", "-d" ]
EOF
A test like this would have exposed this issue earlier:
coreos/fedora-coreos-tracker#1477
@dustymabe sugested using tinyproxy similar to:
##########################
Build a container to run a proxy from and run proxy
After build we can run with:
#############################
The text was updated successfully, but these errors were encountered: