Londek
Londek
CDCloudflare Developers
Created by Vock on 12/14/2024 in #general-help
WARP not working for 2 days for me
3. is proxy set in windows settings?
7 replies
CDCloudflare Developers
Created by Vock on 12/14/2024 in #general-help
WARP not working for 2 days for me
2. do you have other vpn on
7 replies
CDCloudflare Developers
Created by Vock on 12/14/2024 in #general-help
WARP not working for 2 days for me
1. have you restarted your system
7 replies
CDCloudflare Developers
Created by Vock on 12/14/2024 in #general-help
WARP not working for 2 days for me
yeah it might be dumb but
7 replies
CDCloudflare Developers
Created by eriks on 12/14/2024 in #general-help
DNS Resolvers
1.1.1.3 is a dns that doesnt resolve malware and adult content
10 replies
CDCloudflare Developers
Created by eriks on 12/14/2024 in #general-help
DNS Resolvers
1.1.1.2 is a dns that doesnt resolve malware
10 replies
CDCloudflare Developers
Created by eriks on 12/14/2024 in #general-help
DNS Resolvers
1.1.1.1 is just a dns
10 replies
CDCloudflare Developers
Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
By all means I do not have to do it, but I wanted to see whether cloudflare warp could do it
20 replies
CDCloudflare Developers
Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
Hey, thanks for reaching out lol. It’s never too late to do so :lul: I have several VPS servers that I’d like to connect together and create a private network - sort of LAN, hosting does not have official way to do so, so I was wondering whether I can achieve it with cloudflare warp
20 replies
CDCloudflare Developers
Created by ᴀxxᴢʏ on 12/6/2024 in #general-help
discord invite links dont work on WARP
send me an invite and im onto it
8 replies
CDCloudflare Developers
Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
:3853dioshrug:
20 replies
CDCloudflare Developers
Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
+ I'd like to host dns server so that I can resolve xyz.internal.foo.com and warp connector binds to :53
20 replies
CDCloudflare Developers
Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
I've tried warp connectors but they don't support ingress (internet -> network)
20 replies
CDCloudflare Developers
Created by Londek on 11/27/2024 in #general-help
Zero Trust (WARP) as, literally, private network
bump
20 replies
CDCloudflare Developers
Created by Moinul on 11/25/2024 in #general-help
Hi everyone,
It might be that they are still propagating in other parts of world but that would be very unlikely since 2 days already passed
14 replies
CDCloudflare Developers
Created by Moinul on 11/25/2024 in #general-help
Hi everyone,
I think it should be possible with nslookup
14 replies
CDCloudflare Developers
Created by Moinul on 11/25/2024 in #general-help
Hi everyone,
You could look up how the ns records are resolved by your network
14 replies
CDCloudflare Developers
Created by Londek on 9/17/2024 in #general-help
WARP fails lookup on Github Actions
Weird but this works, I suspect because Docker is not used
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5

- name: Install drone-ssh
uses: actions-go/go-install@main
with:
module: github.com/appleboy/drone-ssh@latest

- name: Install drone-scp
uses: actions-go/go-install@main
with:
module: github.com/appleboy/drone-scp@latest

- name: Setup Cloudflare Zero Trust
uses: oHTGo/[email protected]
with:
organization: rvtools
auth-client-id: ${{ vars.CLOUDFLARE_WARP_CLIENT_ID }}
auth-client-secret: ${{ secrets.CLOUDFLARE_WARP_CLIENT_SECRET }}

- name: Copy config via sftp
run: |
drone-scp -H "${{ vars.SERVER_HOST }}" -u "${{ vars.SERVER_USERNAME }}" --ssh-key "${{ secrets.SERVER_SSH_KEY }}" --target "${{ vars.APP_DEPLOY_DIRECTORY }}" --source "docker-compose.yml"

- name: Update docker compose via SSH
run: |
drone-ssh -H "${{ vars.SERVER_HOST }}" -u "${{ vars.SERVER_USERNAME }}" --ssh-key "${{ secrets.SERVER_SSH_KEY }}" -s "cd ${{ vars.APP_DEPLOY_DIRECTORY }} && sudo docker compose up -d --remove-orphans"
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5

- name: Install drone-ssh
uses: actions-go/go-install@main
with:
module: github.com/appleboy/drone-ssh@latest

- name: Install drone-scp
uses: actions-go/go-install@main
with:
module: github.com/appleboy/drone-scp@latest

- name: Setup Cloudflare Zero Trust
uses: oHTGo/[email protected]
with:
organization: rvtools
auth-client-id: ${{ vars.CLOUDFLARE_WARP_CLIENT_ID }}
auth-client-secret: ${{ secrets.CLOUDFLARE_WARP_CLIENT_SECRET }}

- name: Copy config via sftp
run: |
drone-scp -H "${{ vars.SERVER_HOST }}" -u "${{ vars.SERVER_USERNAME }}" --ssh-key "${{ secrets.SERVER_SSH_KEY }}" --target "${{ vars.APP_DEPLOY_DIRECTORY }}" --source "docker-compose.yml"

- name: Update docker compose via SSH
run: |
drone-ssh -H "${{ vars.SERVER_HOST }}" -u "${{ vars.SERVER_USERNAME }}" --ssh-key "${{ secrets.SERVER_SSH_KEY }}" -s "cd ${{ vars.APP_DEPLOY_DIRECTORY }} && sudo docker compose up -d --remove-orphans"
6 replies
CDCloudflare Developers
Created by Londek on 9/17/2024 in #general-help
WARP fails lookup on Github Actions
This looks like Github Actions Docker bug, it tries to use eth0 network(resolvconf) instead of warp's
6 replies
CDCloudflare Developers
Created by Londek on 9/17/2024 in #general-help
WARP fails lookup on Github Actions
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Cloudflare Zero Trust
uses: oHTGo/[email protected]
with:
organization: rvtools
auth-client-id: ${{ vars.CLOUDFLARE_WARP_CLIENT_ID }}
auth-client-secret: ${{ secrets.CLOUDFLARE_WARP_CLIENT_SECRET }}

- name: Copy config via sftp
uses: appleboy/[email protected]
with:
host: ${{ vars.SERVER_HOST }}
username: ${{ vars.SERVER_USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
source: "docker-compose.yml"
target: ${{ vars.APP_DEPLOY_DIRECTORY }}

- name: "Update docker compose via SSH"
uses: appleboy/[email protected]
with:
host: ${{ vars.SERVER_HOST }}
username: ${{ vars.SERVER_USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
script: |
cd ${{ vars.APP_DEPLOY_DIRECTORY }}
sudo docker compose up -d --remove-orphans
jobs:
deploy:
runs-on: ubuntu-latest
timeout-minutes: 5

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Cloudflare Zero Trust
uses: oHTGo/[email protected]
with:
organization: rvtools
auth-client-id: ${{ vars.CLOUDFLARE_WARP_CLIENT_ID }}
auth-client-secret: ${{ secrets.CLOUDFLARE_WARP_CLIENT_SECRET }}

- name: Copy config via sftp
uses: appleboy/[email protected]
with:
host: ${{ vars.SERVER_HOST }}
username: ${{ vars.SERVER_USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
source: "docker-compose.yml"
target: ${{ vars.APP_DEPLOY_DIRECTORY }}

- name: "Update docker compose via SSH"
uses: appleboy/[email protected]
with:
host: ${{ vars.SERVER_HOST }}
username: ${{ vars.SERVER_USERNAME }}
key: ${{ secrets.SERVER_SSH_KEY }}
script: |
cd ${{ vars.APP_DEPLOY_DIRECTORY }}
sudo docker compose up -d --remove-orphans
6 replies