Leon Schmidt

Results 37 comments of Leon Schmidt

Same problem here with plugins: cors,realip,expires,cache,ipfilter,jwt,login

The same applies to the source map btw, but I wasn't able to change its path to the correct location

I'm having the same problem after loggin in

@JOduMonT Sorry I forgot to answer. Unfortunately, that didn't help with me either. My instance was private before too.

Take a look at the new README.md. Now you can pass the build variables `PUBLIC_URL` and `REACT_APP_SERVER` as a build arg and build the Docker image yourself in Docker Compose.

Well this would require modifying the `build/index.html` file while starting the docker container. In the `nginx` image this can be done by using a new entrypoint.sh file like this: ```Dockerfile...

I solved it by supplying an empty string to the `DOMAIN` envvar. docker-compose example: ``` version: '3' services: webminerpool: ... environment: DOMAIN: "" ... ```

It might be possible to use push notifications without the Webpush API by self-implementing such a mechanism. You could still use service workers to display notification, while the UI is...