Hi!
I use Vikunja with a docker on Debian. everything works fine in the browser, but in the desktop application -
It was not possible to find or use the Vikunja installation at "vikunja.mysite.net ". Please check if the URL has the correct format and if you can access it with direct access, and try again.
I set it up like this: docker run -dit -e VIRTUAL_HOST=vikunja.mysite.net -e VIRTUAL_PORT=3456 -e LETSENCRYPT_HOST=vikunja.mysite.net -e LETSENCRYPT_EMAIL=r3drum@yandex.ru -e VIKUNJA_CORS_ENABLE=true -e VIKUNJA_SERVICE_PUBLICURL=vikunja.mysite.net -p 3456:3456 --name=vikunja --hostname=vikunja --restart=unless-stopped -v /home/user/vikunja/config.yml:/app/vikunja/config.yml:ro -v /home/user/vikunja/files:/app/vikunja/files -v /home/user/db:/db vikunja/vikunja
Edited the config in the container: it looks like this:
cors:
enable: true
service:
publicurl: vikunja.mysite.net
The proxy config (vikunja.conf in /etc/nginx/conf.d/, path include in nginx.conf) looks like this:
server {
listen 80;
server_name vikunja.mysite.net;
location / {
proxy_pass http://localhost:3456;
client_max_body_size 20M;
}
}
Please help me, what am I doing wrong?! I tried all the examples from the documentation - it doesn’t work