19 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-5
votes
0
answers
52
views
Gitea actions/checkout leads to "fatal: could not read Username..." [closed]
I am trying to do this in my Gitea Action yml file:
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
And getting this ...
0
votes
0
answers
51
views
Traefik (via Coolify labels) still applies Basic Auth on /api and /jobs
I’m running a container through Coolify and setting Traefik labels.
Basic Auth should only apply to the main site, while /api and /jobs should stay public.
Сonfig:
traefik.enable=true
traefik.http....
1
vote
0
answers
111
views
Supabase GoTrue Ignores Custom Email Templates on Docker / Coolify
I'm running a self-hosted Supabase instance on Coolify using Docker Compose. I'm trying to override the default GoTrue email templates with my own custom HTML files, but GoTrue consistently ignores ...
0
votes
0
answers
136
views
SSL_ERROR_NO_CYPHER_OVERLAP with Uvicorn behind Cloudflare
I'm running a FastAPI backend with Uvicorn on my VPS (Using Coolify) behind Cloudflare, and I'm getting the following error in the browser:
SSL_ERROR_NO_CYPHER_OVERLAP
The error only occurs when the ...
0
votes
0
answers
182
views
Queue mode not working when self-hosting n8n on Coolify
I'm self-hosting n8n using Coolify, and I'm trying to get queue mode working. I’ve followed the official Docker setup instructions and verified everything multiple times, but executions still appear ...
0
votes
0
answers
224
views
Next.js app returns 500 error on all API routes after Coolify deployment (MySQL + Hostinger VPS)
I’m encountering an issue while deploying a website built with Next.js and a MySQL database, hosted on a Hostinger VPS using Coolify.
Context:
• The Next.js site is properly built (next build) and ...
2
votes
0
answers
646
views
How to properly initialize a Dockerized PostgreSQL database on Coolify with custom init scripts?
I have a dockerized backend consisting of a NestJS application and a PostgreSQL service. I want the PostgreSQL service to initialize automatically on the first container startup, specifically:
...
0
votes
0
answers
76
views
Strapi: Grant missing session or misconfigured provider
After logging in with React's Google OAuth library, I am being redirected to my front end again with the following link. Why is this happening and how can I fix the issue?
https://website.com/?error=...
1
vote
0
answers
523
views
How to Export and Retrieve PostgreSQL Database from Coolify Cloud for Migration to Self-Hosted Server?
I am using Coolify Cloud to manage my Next.js application and PostgreSQL database. Both the application and the database are running in separate Docker containers.
I want to back up my PostgreSQL ...
0
votes
2
answers
3k
views
Coolify with CloudFlared & SSL/TLS HTTPS [closed]
I want to use Coolify with CloudFlare Tunnels, so all my apps will be public using https domains, e.g. https://test.mydomain.com
I followed the steps mentioned in docs in order to have a tunnel & ...
1
vote
0
answers
557
views
CORS issue error on Ruby on Rails with Coolify and Caddy as Proxy
I have hosted React Frontend app as a client on Coolify and hosted a Rails Backend api app as a server with PostgresSQL and Redis on Coolify as well. It's working fine locally but not working on ...
0
votes
1
answer
378
views
supabase self-hosted resumable upload problem
I'm hosting Supabase with Kong and using TUS for resumable file uploads. My goal is to ensure that all client-side requests consistently start with https://myhost.com/storage/v1/..., and have Kong ...
0
votes
1
answer
100
views
Undocumented Error: response status is 502 displaying content as text
I am trying to upload the .7z zip file to the fast api from the swagger UI, but i keep on getting the error. The file size is 120mb. Is it due to the file size being large?
And if i upload the ...
0
votes
1
answer
201
views
NestJS/MongoDB Auth not working after deployment via docker compose
Basically, mongo-auth via rootUser/created user works fine locally, but fails on my server after deployment via Coolify/Dokploy
Here is my docker compose file:
version: '3.8'
services:
mongodb-dev:
...
1
vote
1
answer
2k
views
How to run laravel scheduler/cron jobs on Coolify.io self hosted
I'm running a Laravel application hosted on a VPS, managed by a self-hosted Coolify.io service. I've set up the application to auto-deploy on Git commits using Nixpacks, following the documentation, ...