leggettc18
  • Joined on 2020-06-20
leggettc18 commented on issue vikunja/vikunja#633 2020-08-15 20:45:57 +00:00
Can't upload background images

Actually I think I mistyped about the e is undefined error, the api logs just said permission denied on that one. I can still open the issue on that one if it appears again, but I'm guessing it was probably caused by the permissions.

leggettc18 closed issue vikunja/vikunja#633 2020-08-15 12:52:25 +00:00
Can't upload background images
leggettc18 commented on issue vikunja/vikunja#633 2020-08-15 12:52:18 +00:00
Can't upload background images

Works fine after docker execing into the container and chowning the files folder with chown -R vikunja:vikunja files, so somehow my permissions got out of whack in my api container. Most likely a side effect of some other kind of troubleshooting I did at some point earlier.

leggettc18 commented on issue vikunja/vikunja#633 2020-08-15 12:28:52 +00:00
Can't upload background images

When uploading attachments, I get "e is undefined", both in the frontend and api logs.

leggettc18 opened issue vikunja/vikunja#633 2020-08-14 17:29:21 +00:00
Can't upload background images
leggettc18 commented on pull request vikunja/vikunja#595 2020-06-22 03:54:08 +00:00
Added section to full-docker-example.md for Caddy v2.

Ok those should be fixed now.

leggettc18 pushed to master at leggettc18/api 2020-06-22 03:52:47 +00:00
5b0628233d Fixed one more leftover formatting oddity.
leggettc18 pushed to master at leggettc18/api 2020-06-22 03:52:02 +00:00
c6980a390f Fixed some leftovers from copy-paste.
leggettc18 commented on pull request vikunja/vikunja#595 2020-06-22 03:49:29 +00:00
Added section to full-docker-example.md for Caddy v2.

Yup I copy pasted the proxy docker-compose because it ended up being exactly the same minus the proxy section which I just forgot to remove. Oops! Gimme a few minutes I'll get that cleaned up.

leggettc18 created pull request vikunja/vikunja#595 2020-06-22 03:38:12 +00:00
Added section to full-docker-example.md for Caddy v2.
leggettc18 pushed to master at leggettc18/api 2020-06-22 03:36:16 +00:00
2859c71253 Added section to full-docker-example.md for Caddy v2.
leggettc18 created repository leggettc18/api 2020-06-22 03:30:01 +00:00
leggettc18 closed issue vikunja/frontend#163 2020-06-22 01:49:41 +00:00
500 when get issue
leggettc18 commented on issue vikunja/frontend#163 2020-06-22 01:49:40 +00:00
500 when get issue

I'll look into it as soon as I have time. Thanks for being the rubber ducky for my Caddy config and fixing the frontend bug we found! I'll go ahead and close this since its resolved.

leggettc18 commented on issue vikunja/frontend#163 2020-06-21 20:05:22 +00:00
500 when get issue

Deleted my earlier message, forgot to run docker-compose pull first...

It works! I'm going to see about a pull request for the docs to append a Caddy configuration to the Full Docker example, in case anyone sees this before then, my Caddy configuration ended up being even simpler, didn't actually need the handle directives at all.

tasks.{$MY_DOMAIN} {
    reverse_proxy /api/* vikunja-api:3456
    reverse_proxy vikunja-frontend:80
}
leggettc18 commented on issue vikunja/frontend#163 2020-06-21 17:17:23 +00:00
500 when get issue

Ah OK, the whole "not loading assets" thing gave me a better hint of what could actually be happening. If I change the handle directives in Caddy to the following:

tasks.{$MY_DOMAIN} {
    handle /api/* {
        reverse_proxy vikunja-api:3456
    }
    handle /* {
        reverse_proxy vikunja-frontend:80
    }
}

Basically the /css wasn't getting handled by anything, just /, changing the match string to /* allowed that handle tag to match anything (other than /api/*, which gets grabbed by the first handle directive). When I change it to that I get to a login screen. However, when I try to register, I just get a blank red box, which looks like there should be an error but no text. The javascript console then just says "uncaught exception: undefined" I'll investigate more on my end in the meantime, but do you have any potential clues?

leggettc18 opened issue vikunja/frontend#163 2020-06-21 00:10:59 +00:00
Frontend displays a blank page after setting up with Docker