# test.coppertone.tech ## Directory Structure ``` test.coppertone.tech/ ├── compose.yaml # Podman compose configuration ├── www/ # Static website files ├── data/ # Persistent data volumes ├── config/ # Configuration files └── README.md # This file ``` ## Port Assignment - Main site (test.coppertone.tech): `127.0.0.1:9100` - API (api.test.coppertone.tech): `127.0.0.1:9101` (if enabled) ## Commands ```bash # Start the domain hostctl start test.coppertone.tech # Stop the domain hostctl stop test.coppertone.tech # View logs hostctl logs test.coppertone.tech # Check status hostctl status test.coppertone.tech ``` ## Nginx Configuration After starting the containers, add nginx configuration: ```bash sudo /docker/www/startup.sh add-domain test.coppertone.tech 9100 ```