From fe67e425e29121000d40f0e0b3f66c2aa6666f2f Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 12 Nov 2024 10:27:16 +0100 Subject: [PATCH 1/3] fix: update openapi docs --- openapi.yaml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index d2616e9..f5abefa 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -3311,7 +3311,7 @@ paths: type: string responses: '200': - description: 'Project details' + description: 'Environment details' content: application/json: schema: @@ -3467,9 +3467,7 @@ paths: content: application/json: schema: - type: array - items: - $ref: '#/components/schemas/PrivateKey' + $ref: '#/components/schemas/PrivateKey' '401': $ref: '#/components/responses/401' '400': @@ -4759,6 +4757,10 @@ components: compose_parsing_version: type: string description: 'How Coolify parse the compose file.' + custom_nginx_configuration: + type: string + nullable: true + description: 'Custom Nginx configuration base64 encoded.' type: object ApplicationDeploymentQueue: description: 'Project model' @@ -5136,6 +5138,9 @@ components: smtp_notifications_database_backups: type: boolean description: 'Whether to send database backup notifications via SMTP.' + smtp_notifications_server_disk_usage: + type: boolean + description: 'Whether to send server disk usage notifications via SMTP.' discord_enabled: type: boolean description: 'Whether Discord is enabled or not.' @@ -5157,6 +5162,9 @@ components: discord_notifications_scheduled_tasks: type: boolean description: 'Whether to send scheduled task notifications via Discord.' + discord_notifications_server_disk_usage: + type: boolean + description: 'Whether to send server disk usage notifications via Discord.' show_boarding: type: boolean description: 'Whether to show the boarding screen or not.' From 7a094cfa563047de1c68db1d4314ff381de3cbdd Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 12 Nov 2024 10:33:55 +0100 Subject: [PATCH 2/3] add bluesky --- astro.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/astro.config.mjs b/astro.config.mjs index 31f08e9..dfa4483 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -185,6 +185,7 @@ export default defineConfig({ }, social: { github: "https://github.com/coollabsio/documentation-coolify", + blueSky: "https://bsky.app/profile/coolify.io", "x.com": "https://x.com/coolifyio", discord: "https://discord.gg/coolify", twitch: "https://twitch.tv/heyandras", From 0977942ed39864c4c330bdf0746cee4c95756b5d Mon Sep 17 00:00:00 2001 From: Eytan <101130926+eytanProxi@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:42:31 +0100 Subject: [PATCH 3/3] Symfony: add `COMPOSER_ALLOW_SUPERUSER` env --- src/content/docs/applications/symfony.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/content/docs/applications/symfony.mdx b/src/content/docs/applications/symfony.mdx index 74e4ade..c8c1c67 100644 --- a/src/content/docs/applications/symfony.mdx +++ b/src/content/docs/applications/symfony.mdx @@ -17,6 +17,7 @@ Symfony is the leading PHP framework to create websites and web applications. Bu - Set `APP_SECRET` - Set `NIXPACKS_PHP_FALLBACK_PATH` to `/index.php` - Set `NIXPACKS_PHP_ROOT_DIR` to `/app/public` +- Set `COMPOSER_ALLOW_SUPERUSER` to `1` (unless you have [set up a non-root user](/docs/knowledge-base/server/non-root-user)) - Set `Ports Exposes` to `80` ### Database migrations @@ -52,4 +53,4 @@ You might need to configure the [trusted proxy](https://symfony.com/doc/current/ framework: trusted_proxies: "%env(TRUSTED_PROXIES)%" trusted_headers: ['x-forwarded-for', 'x-forwarded-host', 'x-forwarded-proto', 'x-forwarded-port', 'x-forwarded-prefix'] -``` \ No newline at end of file +```