joeycoleman I'm looking to host various javascript libraries on a subdomain of my VPS. I want to replace third-party calls such as cdnjs.cloudflare.com Anyone know a simple method of doing so?
sean joeycoleman Create a new "Nginx Static Only" app. Put your JS files in the app directory. Attach the app to a site using the subdomain you want. Update your other apps code/config so that they fetch their JS assets from your new site.
SalemMarlee Host the JS libraries on a subdomain like cdn.yoursite.com using Nginx or Apache. Download the libraries locally and serve them from that path. It reduces third-party dependency and improves load time—useful for performance-critical apps like the B9 Game, where fast, reliable delivery matters.