ClaudeCloudflare Developer Platform2026/05/12 0:00

Containers - SSH through Wrangler is now enabled by default for Containers

要点だけを先に読めるように短く再構成したセクションです。

元記事

Quick Digest

要約

要点だけを先に読めるように短く再構成したセクションです。

claudeja

Containers - SSH through Wrangler is now enabled by default for Containers の要約

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント2: Subscribe to RSS View RSS feeds ← Back to all posts SSH through Wrangler is now enabled by default for Containers May 12, 2026 Containers SSH through Wrangler is now enabled by def
  • ポイント3: Previously, you had to set ssh.enabled to true in your Container configuration before you could connect.

Summary

この記事は 2026-05-12 に公開された「Containers - SSH through Wrangler is now enabled by default for Containers」の内容を日本語で簡潔にまとめたものです。

Key Points

  • ポイント1: Changelog New updates and improvements at Cloudflare.
  • ポイント2: Subscribe to RSS View RSS feeds ← Back to all posts SSH through Wrangler is now enabled by default for Containers May 12, 2026 Containers SSH through Wrangler is now enabled by def
  • ポイント3: Previously, you had to set ssh.enabled to true in your Container configuration before you could connect.

Full Translation

翻訳

原文の流れを保ったまま読める翻訳セクションです。

claudeja

Containers - SSH through Wrangler is now enabled by default for Containers(原文タイトル)

概要

公開日: 2026-05-12 翻訳生成に失敗したため、原文をそのまま保存しています。

原文

Changelog New updates and improvements at Cloudflare. Subscribe to RSS View RSS feeds ← Back to all posts SSH through Wrangler is now enabled by default for Containers May 12, 2026 Containers SSH through Wrangler is now enabled by default for Containers . Previously, you had to set ssh.enabled to true in your Container configuration before you could connect. This change does not expose any publicly accessible ports on your Container. The SSH service is reachable only through wrangler containers ssh , which authenticates against your Cloudflare account. You also need to add an ssh-ed25519 public key to authorized_keys before anyone can connect, so enabling SSH alone does not grant access. To connect, add a public key to your Container configuration and run wrangler containers ssh <INSTANCE_ID> : wrangler.jsonc wrangler.toml JSONC { " containers " : [ { " authorized_keys " : [ { " name " : "<NAME>" , " public_key " : "<YOUR_PUBLIC_KEY_HERE>" , }, ], }, ], } ", "public_key": " ", }, ], }, ],}"> TOML [[ containers ]] [[ containers . authorized_keys ]] name = "<NAME>" public_key = "<YOUR_PUBLIC_KEY_HERE>" "public_key = " ""> To disable SSH, set ssh.enabled to false in your Container configuration: wrangler.jsonc wrangler.toml JSONC { " containers " : [ { " ssh " : { " enabled " : false , }, }, ], } TOML [[ containers ]] [ containers . ssh ] enabled = false For more information, refer to the SSH documentation . Resources API New to Cloudflare? Directory Sponsorships Open Source Support Help Center System Status Compliance GDPR Company cloudflare.com Our team Careers Tools Cloudflare Radar Speed Test Is BGP Safe Yet? RPKI Toolkit Certificate Transparency Community X Discord YouTube GitHub © 2026 Cloudflare, Inc. Privacy Policy Terms of Use Report Security Issues Trademark Cookie Settings Was this helpful? Yes No