
超实
复制├── environments/         # Parent directory for our environment-specific directories             │   │             │   ├── dev/              # Containsall files specific to the dev environment             │   │   ├── group_vars/   # dev specific group_vars files             │   │   │   ├── all            │   │   │   ├── db             │   │   │   └── web             │   │   └── hosts         # Containsonly the hosts in the dev environment             │   │             │   ├── prod/             # Containsall files specific to the prod environment             │   │   ├── group_vars/   # prod specific group_vars files             │   │   │   ├── all            │   │   │   ├── db             │   │   │   └── web             │   │   └── hosts         # Containsonly the hosts in the prod environment             │   │             │   └── stage/            # Containsall files specific to the stage environment             │       ├── group_vars/   # stage specific group_vars files             │       │   ├── all            │       │   ├── db             │       │   └── web             │       └── hosts         # Containsonly the hosts in the stage environment             │             1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.23.