Milos Knezevic
Articles
-
How to set Access Control
When developing your site, you might want to hide your development environments from outside viewers. Or you may find you have performance issues from excessive bot access. You can control access e...
-
How to see database credentials
There are several ways to get your database username and password (e.g. MariaDB MySQL service). You can obtain the credentials through platform cli or from your app containers. After you ssh into...
-
How to increase memory allocated to app
You can adjust the amount of memory allocated to your application (and services) using the resources key in your app configuration. The total allocated memory must stay within the limits set by you...
-
How to sign up for a CDN
Depending on the subscription plan you have chosen, the responsibility for managing your Content Delivery Network (CDN) may vary. In some cases, you will need to take on the management of the CDN y...
-
What is New at Upsun
Please take a look this page to learn about the latest launches at Upsun!
-
How to install wordpress plugins and themes?
If you are using Composer to manage Wordpress, simply use the composer CLI to add the plugin or theme to your composer.json and composer.lock files and commit them to your project repository. They ...
-
How to set up a redis cache?
To add a Redis service to your project, add an entry to your project's services.yaml file. We support two Redis modes: Persistent: to set up fast persistent storage for your application, use the t...
-
How to host a static HTML page?
Commit your site's static files to a directory in your project repository, then point your app's yaml configuration to it by defining a web.locations key in your .platform.app.yaml file. The root k...
-
Using Cloudflare CDN
Cloudflare can be used as a Content Delivery Network in front of your Platform.sh project Requirements An up-and-running Platform.sh project A Cloudflare CDN subscription Set up your Cloudflare C...
-
How to set worker relationships?
Workers inherit the relationships from the app in which they are created. They will have access to all the same services as their parent app. Any top-level definitions, including relationships, are...