Oliwer
Explore posts from serversCDCloudflare Developers
•Created by Oliwer on 11/15/2024 in #general-help
Query string keep being appended twice
I have a Page Rule set up for redirection when matched. For some reason, the query string keep being appended twice, but the second one is never parsed. E.g:
Match:
- URL:
https://sub2.domain.com/*/*/*
Then:
- Forwarding URL 301
- https://sub1.domain.com/platform/$1/$2/$3
Testing:
- https://sub2.domain.com/arc/3/free?p=31
- Expected: https://sub1.domain.com/platform/arc/3/free?p=31
- Actual: https://sub1.domain.com/platform/arc/3/free?p=31?$query_string
Does anyone have an idea as to why this could be occurring?3 replies
Using sharppcap to read packets
I'm trying to read TCP packets using sharppcap in my .NET application but I can't seem to figure out how to check if it's a TCP packet or not, and read the data if so.
Researching this, I could only ever find posts surpassing 7 years of activity and it has obviously been updated quite the bit since then. Does anyone have an idea on how to go about this?
12 replies
Docker.DotNet - trouble connecting to the host from INSIDE of a pre-deployed container.
As the title of this post leads, I am having trouble connecting to the Docker host from a client - Docker.DotNet (https://github.com/dotnet/Docker.DotNet) - from inside of an already deployed container (the application itself). The
readme
mentions or to connect to your local Docker for Windows daemon
by not supplying any pipe URI at all, but this was to no success. Is this a possibility or am I wasting time?
Thanks in advance.1 replies