Development & playtest sandbox
Build here. Break here.
A private space to host game builds and test them with friends โ served straight off the box, isolated from everything else running on this machine.
Stack test โ playable demo
If this runs, the full path works: DNS โ nginx โ TLS โ static files โ JS. Use โ โ or drag. Catch the falling blocks.
Score 0
Lives 3
Best 0
Deploying a build
Drop any static build (Godot HTML5, Unity WebGL, Phaser, plain JS) into its own folder and it is served immediately โ no restart, no build step.
# from your machine
scp -r ./my-build bittu@34.131.169.220:/tmp/my-build
# on the server
sudo mv /tmp/my-build /opt/websites/gaming/app/games/my-build
sudo chown -R gaming-app:gaming-app /opt/websites/gaming/app/games/my-build
sudo find /opt/websites/gaming/app/games/my-build -type d -exec chmod 750 {} +
sudo find /opt/websites/gaming/app/games/my-build -type f -exec chmod 640 {} +
# now live at
https://gaming.parashars.co.in/games/my-build/
Note: this is a static host. A game needing a server (multiplayer, matchmaking, saved state) needs a backend process added โ ask and it can be wired in on its own port, same isolation as the other sites.
Where things live
| Path | What |
|---|---|
app/public/ | This landing page |
app/games/ | Your builds, one folder each |
logs/ | nginx access + error for this site only |
config/ | Secrets, if a backend is ever added |