Adrian Gebhart

Results 6 comments of Adrian Gebhart

Here is an example configuration for docker-compose to run the daemon in a separate container: ``` notify_push: container_name: notify_push image: nextcloud/fpm-alpine restart: always networks: nextcloud-net: environment: - PORT=7867 - NEXTCLOUD_URL=https://example.com/nextcloud/...

> Thanks for the docker-compose files. I run this behind a traefik2 instance, and somehow I am stuck at > > ``` > docker-compose exec --user www-data app php occ...

You probably have to add your notify_push container to the same network as your proxy otherwise traefik can forward `/push` to your container: ``` notify_push: image: nextcloud:latest restart: always networks:...

@raimund-schluessler So if you add `entryPoints.https.forwardedHeaders.insecure=true` it worked right? The app [seems to run](https://github.com/nextcloud/notify_push/blob/2d40d238fe4b52b5c4475456e4ebe81a1f06edc9/lib/SelfTest.php#L139) something similar to `curl -H 'x-forwarded-for: 1.2.3.4' https://example.com/index.php/apps/notify_push/test/remote` and expects `1.2.3.4` as the answer (which works...

Does this work for you? ``` Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\Directory\Background\shell\WSL] @="Ubuntu Bash" "Icon"="C:\\Program Files\\WindowsApps\\CanonicalGroupLimited.UbuntuonWindows_1604.2017.922.0_x64__79rhkp1fndgsc\\images\\icon.ico" [HKEY_CLASSES_ROOT\Directory\Background\shell\WSL\command] @=hex(2):25,00,55,00,53,00,45,00,52,00,50,00,52,00,4f,00,46,00,49,00,4c,00,\ 45,00,25,00,5c,00,41,00,70,00,70,00,44,00,61,00,74,00,61,00,5c,00,4c,00,6f,\ 00,63,00,61,00,6c,00,5c,00,4d,00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,\ 74,00,5c,00,57,00,69,00,6e,00,64,00,6f,00,77,00,73,00,41,00,70,00,70,00,73,\ 00,5c,00,75,00,62,00,75,00,6e,00,74,00,75,00,2e,00,65,00,78,00,65,00,20,00,\ 2d,00,63,00,20,00,62,00,61,00,73,00,68,00,00,00 ```

This should work: ``` Windows Registry Editor Version 5.00 [-HKEY_CLASSES_ROOT\Directory\Background\shell\WSL] ```