We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2179ef6 commit ba6dc41Copy full SHA for ba6dc41
scripts/aws/entrypoint.sh
@@ -23,20 +23,8 @@ echo "Starting vsock proxy..."
23
24
/usr/sbin/syslog-ng --verbose
25
26
-#!/bin/bash
27
-
28
-URL="https://example.com"
29
-ping example.com
30
-curl -v https://example.com
31
32
# Send request and check response
33
-RESPONSE=$(curl -s -o /dev/null -w "%{http_code}" "$URL")
34
35
-if [[ $RESPONSE -eq 200 ]]; then
36
- echo "Success: Received response from $URL"
37
-else
38
- echo "Failed: No response or HTTP code $RESPONSE"
39
-fi
+curl -s -x socks5h://127.0.0.1:3305 "https://example.com"
40
41
build_parameterized_config() {
42
curl -s -f -o "${PARAMETERIZED_CONFIG}" -x socks5h://127.0.0.1:3305 http://127.0.0.1:27015/getConfig
0 commit comments