Milos Knezevic
Articles
-
What is YAML?
YAML is a human-readable format for data serialization across languages. This means it’s a good fit for human-edited configuration files, like those at Platform.sh. You can control nearly all aspec...
-
Do you support Apache Kafka?
Yes. We offer Kafka as its own service.Please note that we currently only offer version 3.7. Version 4.X is not currently available. To define the Apache Kafka service, use the kafka type in upsun/...
-
How do I add a MariaDB or MySQL database service to my project?
Platform.sh supports both MariaDB and Oracle MySQL to manage your relational databases. To add a database service: 1. The first step to adding a service is to add an entry to your .platform/service...
-
How do I configure multiple databases in my MySQL or MariaDB service?
When you add a MySQL or MariaDB service to your project without any customization, you will get a single database called main, and a single user to access it also called main. To configure multiple...
-
How to configure apps?
Control your apps and how they’re built and deployed on Platform.sh with YAML configuration. Within a single project, you can have one or more apps and each app can have multiple instances. Instanc...
-
What programming languages are supported by Platform.sh?
Platform.sh supports a wide variety of programming languages.
-
Can I set a password on a database user?
Yes. You can customize the users that are created in your MariaDB or MySQL database service by including the endpoints key in the service definition.When the user configuration is customized in thi...
-
How to forward logs to New Relic?
See our documentation for how to forward logs to New Relic.
-
Is it possible to enable webp format?
The WebP format is only included in php8 and up: https://docs.platform.sh/languages/php/extensions.html You could compile it yourself, although it's recommended spending time migrating to php8. The...
-
Can I change a system file from read-only mode?
No. You can't modify read-only files. You can only modify files that you create and commit to your project's git repository. To modify your own files during runtime, you can either configure a writ...