Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi all, I managed to solve the problem and i’ll leave this here in case anyone runs into the same problem as me:
In this line of code:
location /RGBGame {
root /var/www/khairulslt.me/RGBGame;
index colorGame.html;
try_files $uri $uri/ /var/www/RGBGame/colorGame.html?q=$uri&$args;
autoindex off;
}
The files that I want to serve in the subdirectory URL here >>> www.khairulslt.me/RGBGame are located in /var/www/khairulslt.me/RGBGame
Above, I thought i needed this line of code to serve the files
root /var/www/khairulslt.me/RGBGame;
However, what I really wanted was:
root /var/www/khairulslt.me;
I hope this helps someone out there!