Simen Daehlin Hi I already did and double-checked it: my .env (I omit the other values): HOST = 0.0 . 0.0 PORT = 1337 URL = 'https://sub.domain.de' and in my config/server.js: module.exports = ({ env }) = > ({ host: env( 'HOST' , '0.0.0.0' ), port: env.int( 'PORT' , 1337 ), url : env( 'URL' , 'https://sub.domain.de' ), app: { keys: env.array( 'APP_KEYS' ), }, }); I still get those 2 entries with the "wrong" localhost url and the API error. Can't create my admin user..