Keith Irwin
Keith Irwin
Oh, you're right. So it seems to only 404 in subdirs. If I set sha to `main` or `main:_src` it works, but `main:_src/pages` does not even though `_src/pages` is a...
```sh $ curl -X 'GET' \ 'https://gitea.com/api/v1/repos/gitea/gitea-mirror/git/trees/main%3Apublic%2Fassets' \ -H 'accept: application/json' {"sha":"3ba6530bf5a26ca2d93c9c6b2a8cf81c5163fe69","url":"https://gitea.com/api/v1/repos/gitea/gitea-mirror/git/trees/3ba6530bf5a26ca2d93c9c6b2a8cf81c5163fe69","tree":[{"path":"img","mode":"040000","type":"tree","size":0,"sha":"fc924277fa697dd7b636bcd747fc5660ae910014","url":"https://gitea.com/api/v1/repos/gitea/gitea-mirror/git/trees/fc924277fa697dd7b636bcd747fc5660ae910014"}],"truncated":false,"page":1,"total_count":1} ``` ```sh $ curl -X 'GET' 'https://mygitea.tld/api/v1/repos/myowner/myrepo/git/trees/main%3A_src%2Fpages' -H 'accept: application/json' 404 page not found ``` Well it doesn't...
Fixed it for me! I was adding a trailing slash in my reverse proxy, nginx: **Does not work:** ```nginx upstream gitea { server localhost:3000; } server { ... location /...
OK, I see. I understood that I needed `fulfill('FULFILLED');` in the promise definition, but I was trying to avoid the callback in `setTimetout()`! I could have guessed that, but I...
Firstly, you should use newlines. It makes it hard to read, and you missed a semicolon. Here are some hints: - `fulfill()` is only available in the promise constructor, not...
Does Wireguard work on Uberspace?
Looks like I need some permissions to create the interface: ```sh ERROR: (wg0) 2020/01/27 17:17:32 Failed to create TUN device: operation not permitted ``` I tried [BoringTun](https://github.com/cloudflare/boringtun) and got a...
I had to use `network_mode: host` for the container to see the interfaces.
What's the point of import/export if it _only_ imports back to the same place of export? For me, this became an issue when I wanted to get the app from...
webp images work fine in the web app  In the android app, I can only get jpegs to preview:  