How to allow all traffic on a local interface using UFW?
laurent asked: I’ve got Apache running as a reverse proxy for another Docker service. I got it working but as soon as I enable UFW, all connections are blocked with …
Freedom through Communications
Browsing Tag
laurent asked: I’ve got Apache running as a reverse proxy for another Docker service. I got it working but as soon as I enable UFW, all connections are blocked with …
P.Larich asked: I have a simple go service that checks the request IP address by using Request.RemoteAddr from the standard net/http package. This go service is deployed behind nginx with …
Data Mastery asked: Since 2 days, our users get the following warning when trying to login on our service: English version: The information you’re about to submit is not secure …
Albert asked: In a server with only one ipv4 and running haproxy, i want to redirect an url and proxy another in TCP level, for ssl passthrough purpose. frontend https-frontend …
Douwe asked: I have been following this tutorial to set up a reverse proxy. I have moved some sites to a new server, and changing the DNS for a lot …
porpor asked: Let’s say I have a droplet with Nginx and setup reverse proxy to specific docker container subfolders. below is my reverse proxy setup for nginx Frontend Nginx #For …
Bruno F. Fontes asked: I have a back-end server (Apache) that is too far from most of our users, so our idea is to implement a closer reverse proxy that …
SoftTimur asked: I just realized that certain links of my website lead to "502 Bad Gateway" error. For example, https://v2a.10studio.tech/10studio/auth/google, https://v2a.10studio.tech/auth/google, https://v2a.10studio.tech/10studio/auth/microsoft, https://v2a.10studio.tech/auth/microsoft. I’m pretty sure that those links worked …
sakib11 asked: I am running a flask server on port 5000 and my nginx config looks something like this: server { listen 80; server_name xyz; location / { proxy_pass http://localhost:5000/; …
Suhail Gupta asked: I have enabled caching with Nginx. I followed the official docs and it works fine. What happens is, when the request comes in for the first time, …