• 0 Posts
  • 29 Comments
Joined 1 year ago
cake
Cake day: June 25th, 2023

help-circle





  • I have solved this problem! The trick is to use two Docker containers:

    1. Gluetun (https://github.com/qdm12/gluetun): set this up to connect to your VPN.
    2. Tailscale (https://tailscale.com/kb/1282/docker/): set this to use the Gluetun network.

    Here is an example docker-compose.yml:

    version: "3"
    services:
      gluetun:
        image: qmcgaw/gluetun
        container_name: gluetun
        # line above must be uncommented to allow external containers to connect.
        # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/connect-a-container-to-gluetun.md#external-container-to-gluetun
        restart: unless-stopped
        cap_add:
          - NET_ADMIN
        devices:
          - /dev/net/tun:/dev/net/tun
        volumes:
          - ./gluetun:/gluetun
        environment:
          - VPN_SERVICE_PROVIDER=airvpn
          - VPN_TYPE=wireguard
          - WIREGUARD_PRIVATE_KEY=xxx
          - WIREGUARD_PRESHARED_KEY=xxx
          - WIREGUARD_ADDRESSES=xxx
          - WIREGUARD_MTU=1320
          - SERVER_COUNTRIES=United States
          # See https://github.com/qdm12/gluetun-wiki/tree/main/setup#setup
          # Timezone for accurate log times
          - TZ=America/New_York
          # Server list updater
          # See https://github.com/qdm12/gluetun-wiki/blob/main/setup/servers.md#update-the-vpn-servers-list
          - UPDATER_PERIOD=24h
    
      tailscale:
        container_name: tailscale
        cap_add:
          - NET_ADMIN
          - NET_RAW
        volumes:
          - ./tailscale/var/lib:/var/lib
          - ./tailscale/state:/state
          - /dev/net/tun:/dev/net/tun
        network_mode: "service:gluetun"
        restart: unless-stopped
        environment:
          - TS_HOSTNAME=airvpn-exit-node
          - TS_AUTHKEY=xxxxxxxx
          - TS_EXTRA_ARGS=--login-server=https://example.com --advertise-exit-node
          - TS_NO_LOGS_NO_SUPPORT=true
          - TS_STATE_DIR=/state
        image: tailscale/tailscale
    



  • Am I religious if I say there isn’t a marble at the table? Or a walnut?

    Yes.

    A rational person would say “I don’t know if there is a ball, marble, or walnut”. If you have experience with other tables with upside-down cups, you might go further and say something like “If this table with cups is like the other tables with cups that I’ve experienced… (fill in whatever your experience re:balls, marbles, walnuts, etc)”. To say more requires a leap of faith.

    And, unlike tables, cups, balls, and walnuts, the existence of the universe is apparently quite singular. Thus, if you haven’t had direct experience with it, it is unlikely that you’ll have had sufficient parallel experiences to make any meaningful statements like “If this universe is like the other universes I’ve characterized…”. Therefore, lacking any direct experience, the reasonable position would be “I don’t know”.










  • Sure. And, you’re free to leave the table. You have the freedom to decide the question is uninteresting or contrived or whatever and never think about it again. Others, however, think the question is interesting enough to pursue. Some of those people go on to report discovering evidence for God through first-hand experience. Those people might all be morons or delusional. The only way you have any chance of knowing for sure is to keep an open mind and try to find the evidence yourself. But, again, no one’s forcing you.