31. 转发端口

默认情况下,以下端口会被转发至 Homestead 环境:

  • SSH: 2222 → 发送到 22
  • HTTP: 8000 → 发送到 80
  • HTTPS: 44300 → 发送到 443
  • MySQL: 33060 → 发送到 3306
  • Postgres: 54320 → 发送到 5432
  • Mailhog: 8025 → 发送到 8025

你可以根据需要转发更多端口给 Vagrant Box,并指定其协议:

ports:
    - send: 50000
      to: 5000
    - send: 7777
      to: 777
      protocol: udp

你可能感兴趣的:(31. 转发端口)