```
/etc/pg-api/ # Main configuration directory
├── pg-api.env # Environment variables (secrets)
├── accounts.json # Account configurations
└── server.json # Server settings
/opt/prod/pg-api/ # Application directory
├── target/release/pg-api # Binary executable
├── logs/ # Application logs
└── backup/ # Backup directory
/var/lib/pg-api/ # Data directory (future use)
└── cache/ # Cache files
```
- ---
```bash
/etc/pg-api/pg-api.env # 640 root:pg-api
/etc/pg-api/accounts.json # 640 root:pg-api
/etc/pg-api/server.json # 644 root:root
/opt/prod/pg-api/ # 755 pg-api:pg-api
/opt/prod/pg-api/logs/ # 755 pg-api:pg-api
```