You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem with Kutt/Docker.
I can't figure out why when I launch the container, and put the kutt url in firefox, it instantly redirects to https://localhost.
`# App port to run on
PORT='3000'
# The name of the site where Kutt is hosted
SITE_NAME='name'
# The domain that this website is on
DEFAULT_DOMAIN='url.url.tld'
# Generated link length
LINK_LENGTH='6'
# Postgres database credential details
DB_HOST='host'
DB_PORT='5432'
DB_NAME='name'
DB_USER='user'
DB_PASSWORD='pwd'
DB_SSL='false'
# Redis host and port
REDIS_HOST='host'
REDIS_PORT='6379'
REDIS_PASSWORD=''
REDIS_DB='kutt'
# Disable registration
DISALLOW_REGISTRATION='false'
# Disable anonymous link creation
DISALLOW_ANONYMOUS_LINKS='false'
# The daily limit for each user
USER_LIMIT_PER_DAY='50'
# Create a cooldown for non-logged in users in minutes
# Set 0 to disable
NON_USER_COOLDOWN='0'
# Max number of visits for each link to have detailed stats
DEFAULT_MAX_STATS_PER_LINK='5000'
# Use HTTPS for links with custom domain
CUSTOM_DOMAIN_USE_HTTPS='false'
# A passphrase to encrypt JWT. Use a long and secure key.
JWT_SECRET='jwt'
# Admin emails so they can access admin actions on settings page
# Comma seperated
ADMIN_EMAILS='mail'
# Invisible reCaptcha secret key
# Create one in https://www.google.com/recaptcha/intro/
RECAPTCHA_SITE_KEY='key'
RECAPTCHA_SECRET_KEY='secret-'
# Your email host details to use to send verification emails.
# More info on http://nodemailer.com/
# Mail from example "Kutt <[email protected]>". Leave empty to use MAIL_USER
MAIL_HOST='smtp'
MAIL_PORT='port'
MAIL_SECURE='true'
MAIL_USER='mail'
MAIL_FROM='URL <name>'
MAIL_PASSWORD='pwd'
# The email address that will receive submitted reports.
REPORT_EMAIL='mail'
# Support email to show on the app
CONTACT_EMAIL='mail'`
logs :
kutt | wait-for-it.sh: host:5432 is available after 0 seconds
kutt |
kutt | > [email protected] start /usr/src/app
kutt | > npm run migrate && cross-env NODE_ENV=production node production-server/server.js
kutt |
kutt |
kutt | > [email protected] migrate /usr/src/app
kutt | > knex migrate:latest --env production
kutt |
kutt | Requiring external module ts-node/register
kutt | Using environment: production
kutt | Already up to date
kutt | > Ready on http://localhost:3000```
The text was updated successfully, but these errors were encountered:
Hi,
I have a problem with Kutt/Docker.
I can't figure out why when I launch the container, and put the kutt url in firefox, it instantly redirects to https://localhost.
Here is my configuration:
Docker compose :
.env file :
logs :
The text was updated successfully, but these errors were encountered: