https://discord.cloudflare.com logo
Join Discord
Powered by
# general-discussions
  • c

    Clashplayer

    05/28/2023, 5:56 PM
    yes, can I add the cname as a proxy?
  • w

    Walshy | Pages

    05/28/2023, 5:57 PM
    yes
  • c

    Clashplayer

    05/28/2023, 5:57 PM
    The page is not redirected correctly An error has occurred while connecting to girard-valentin.fr. The cause of this problem may be the deactivation or refusal of cookies.
  • c

    Clashplayer

    05/28/2023, 5:58 PM

    https://cdn.discordapp.com/attachments/909458221419356210/1112439870833557565/image.png▾

  • c

    Clashplayer

    05/28/2023, 5:59 PM
    when I deactivate the proxy it works
  • w

    Walshy | Pages

    05/28/2023, 5:59 PM
    Copy code
    curl -I https://girard-valentin.fr/
    HTTP/2 301
    date: Sun, 28 May 2023 17:59:11 GMT
    location: http://girard-valentin.fr/
  • w

    Walshy | Pages

    05/28/2023, 5:59 PM
    You have an infinite loop going on https -> http -> https -> http
  • w

    Walshy | Pages

    05/28/2023, 5:59 PM
    Change your SSL mode to Full (Strict)
  • c

    Clashplayer

    05/28/2023, 5:59 PM
    wtf
  • c

    Clashplayer

    05/28/2023, 5:59 PM
    okay
  • c

    Clashplayer

    05/28/2023, 5:59 PM
    Good 🙂
  • w

    Walshy | Pages

    05/28/2023, 6:00 PM
    https://dash.cloudflare.com/?to=/:account/:zone/ssl-tls -> Full (Strict)
  • w

    Walshy | Pages

    05/28/2023, 6:00 PM
    then it'll be good
  • c

    Clashplayer

    05/28/2023, 6:00 PM
    Yes

    https://cdn.discordapp.com/attachments/909458221419356210/1112440207522922597/image.png▾

  • c

    Clashplayer

    05/28/2023, 6:01 PM
    still not...
  • c

    Clashplayer

    05/28/2023, 6:03 PM
    Ready thanks you
  • c

    Clashplayer

    05/28/2023, 6:04 PM
    Full works too?
  • d

    dave

    05/28/2023, 6:12 PM
    Does Cloudflare's dash show preconnect stats anywhere?
  • m

    Mees

    05/28/2023, 6:38 PM
    Does anyone know how expensive Cloudflare Magic Transit is?
  • l

    Loski

    05/28/2023, 8:47 PM
    very expensive
  • l

    Loski

    05/28/2023, 8:47 PM
    especially if you expect more than 2-3 attacks a year
  • n

    Noah Kennedy | Oxy

    05/28/2023, 8:53 PM
    there's a reason its ENT-only
  • l

    lokiwind

    05/28/2023, 9:06 PM
    Hi how can i check the completion time of a workers code
  • l

    lokiwind

    05/28/2023, 9:07 PM
    ie how many ms the code is completed
  • w

    Wallslide

    05/29/2023, 2:43 AM
    I have an API I want to access from a cloudflare worker. But I need to do so from a dedicated IP that the API vendor can whitelist. Is there a product that can help me do that?
  • Hey folks, I have a project and my
    c

    Cyb3r-Jok3

    01/02/2024, 4:06 PM
    Depends on what you are looking for. If you want to run all external traffic then using a VPN solution like wireguard or openvpn would work. Just have to do stuff with routing
    c
    • 2
    • 14
  • still failing
    c

    Chaika

    01/03/2024, 10:34 PM
    Copy code
    js
    const API_TOKEN = 'YOUR_CLOUDFLARE_API_TOKEN';
    const ACCOUNT_ID = 'YOUR_ACCOUNT_ID';
    const NAMESPACE_ID = 'YOUR_NAMESPACE_ID';
    const KV_PAIR = {
      key: 'your_key',
      value: 'your_value'
    };
    
    async function writeKVPair() {
      const urlEscapedKey = encodeURIComponent(KV_PAIR.key);
      const response = await fetch(`https://api.cloudflare.com/client/v4/accounts/${ACCOUNT_ID}/storage/kv/namespaces/${NAMESPACE_ID}/values/${urlEscapedKey}`, {
        method: 'PUT',
        headers: {
          'Authorization': `Bearer ${API_TOKEN}`,
          'Content-Type': 'application/json'
        },
        body: JSON.stringify(KV_PAIR)
      });
    
      if (response.ok) {
        console.log('Key-value pair written successfully!');
      } else {
        console.error('Failed to write key-value pair:', await response.text());
      }
    }
    
    writeKVPair();
    example:
    p
    • 2
    • 22
  • What ever happened to Privacy Pass? Was
    e

    Erisa | Support Engineer

    01/04/2024, 5:18 PM
    Following up on this in 2024: https://blog.cloudflare.com/privacy-pass-standard cc @Chaika
    a
    • 2
    • 2
  • yes if not that, I could't access to
    c

    Cyb3r-Jok3

    01/09/2024, 2:53 AM
    You can have a record for
    subdomain.domain.com
    without having a record for
    domain.com
    . What makes if you make a new proxied AAAA record for
    @
    with a value of
    100::
    . Does the redirect work then?
    f
    • 2
    • 17
  • This question for help, after adding a
    z

    zhuangyuan_64091

    01/09/2024, 9:24 AM
    Has anyone encountered this situation?