Nextcloud apps (Android from F-Droid) doesn’t show Nextpush application for let me select UnifiedPush on my Xiami Redme Note 8 Pro. And Notifications in Parameters isn’t listed.
Support intro
Sorry to hear you’re facing problems. 
The community help forum (help.nextcloud.com) is for home and non-enterprise users. Support is provided by other community members on a best effort / “as available” basis. All of those responding are volunteering their time to help you.
If you’re using Nextcloud in a business/critical setting, paid and SLA-based support services can be accessed via portal.nextcloud.com where Nextcloud engineers can help ensure your business keeps running smoothly.
Getting help
In order to help you as efficiently (and quickly!) as possible, please fill in as much of the below requested information as you can.
Before clicking submit: Please check if your query is already addressed via the following resources:
- Official documentation (searchable and regularly updated)
- How to topics and FAQs
- Forum search
(Utilizing these existing resources is typically faster. It also helps reduce the load on our generous volunteers while elevating the signal to noise ratio of the forums otherwise arising from the same queries being posted repeatedly).
The Basics
- Nextcloud Server version (e.g., 29.x.x):
Nextcloud 32
- Operating system and version (e.g., Ubuntu 24.04):
- Ubuntu 22.04.5 LTS
- Web server and version (e.g, Apache 2.4.25):
- apache2 -v
Server version: Apache/2.4.66 (Ubuntu)
Server built: 2025-12-05T15:02:09
- apache2 -v
- Reverse proxy and version _(e.g. nginx 1.27.2)
- nginx version: nginx/1.29.5
- PHP version (e.g, 8.3):
8.2 (and 8.3 for CLI)
- Is this the first time you’ve seen this error? (Yes / No):
No
- Installation method (e.g. AlO, NCP, Bare Metal/Archive, etc.)
AIO
- Are you using CloudfIare, mod_security, or similar? (Yes / No)
No
Steps to replicate it (hint: details matter!):
-
Suppress the Nextcloud application after Nextpush configuration
-
Reinstall it
-
Go in Parameters in Nextcloud Apps
-
There is no Notification’s entry
root@jeanne:~# cat /home/my_user/conf/web/cloud.publicitem.pro/nginx.ssl.conf_push
— Configuration globale pour UnifiedPush (NextPush) —
Ces directives s’appliquent à toutes les requêtes vers le serveur Apache (port 8443)
Elles garantissent que les notifications ne sont pas mises en cache par le proxy
proxy_buffering off;
proxy_request_buffering off;
proxy_connect_timeout 600s;
proxy_send_timeout 600s;
proxy_read_timeout 600s;
— Bloc spécifique pour le binaire Rust (notify_push) —
location ^~ /push/ {
proxy_pass http://127.0.0.1:7867/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Timeouts longs spécifiques au WebSocket
proxy_read_timeout 3600s;
proxy_send_timeout 3600s;
}
— Gateway Matrix pour UnifiedPush (Optionnel) —
Nécessaire si vous utilisez des clients comme Element
location /_matrix/push/v1/notify {
proxy_pass https://my_ip_server:8443/index.php/apps/uppush/gateway/matrix;
proxy_ssl_server_name on;
proxy_ssl_name $host;
}
root@jeanne:# sudo -u my_user php8.2 /home/my_user/web/cloud.publicitem.pro/public_html/occ notify_push:self-test
✓ redis is configured
✓ push server is receiving redis messages
✓ push server can load mount info from database
✓ push server can connect to the Nextcloud server
✓ push server is a trusted proxy
✓ push server is running the same version as the app
Regards
