Newsยท admin
Multiple projects on one server with Docker Compose
How I run several projects on one VPS without port conflicts: the host Nginx + local ports architecture.

The cleanest way to host several projects on a small VPS:
- Each project isolated with its own
docker-compose.yml - Ports bound to
127.0.0.1only - A single host Nginx proxies each domain to the right port
This very site runs on the same scheme. ๐
- #Python