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).
Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can. ![]()
The Basics
- Nextcloud Server version (e.g., 29.x.x):
- 34.0.3
- Operating system and version (e.g., Ubuntu 24.04):
- Linux 6.18.39+rpt-rpi-2712 aarch64
- Web server and version (e.g, Apache 2.4.25):
Apache
- Installation method (e.g. AlO, NCP, Bare Metal/Archive, etc.)
AIO with Docker
- Are you using CloudfIare, mod_security, or similar? (Yes / No)
No
Summary of the issue you are facing:
I want to modify the Apache webserver and cannot find a proper way to do this.
My Nextcloud AIO instance is running well and i can connect it from the outside. So far so good. Now i have added a Open WebUI server on a Mac in the local network, listening on 192.168.x.x:3000. My aim is it to change the Apache config file that Apache ist forwarding all the ports for Nextcloud (80, 8080, 443) from nextcloud.mydomain.com to the home server 192.168.1.100 and all requests on port 3000 to 192.168.1.101.
Is it correct to open a shell in the container?
docker exec -it nextcloud-aio-apache sh
in the directory conf I’ve found a nextcloud.conf file. Unfortunately RO. How can i write there? Sudo does not work. And the adding the following block below should work?
<VirtualHost *:3000>
ProxyPreserveHost On
ProxyRequests Off
ServerName nextcloud.mydomain.com
ServerAlias nextcloud.mydomain.com
ProxyPass / http://192.168.1.101:3000
ProxyPassReverse / http://localhost:8080/example/
</VirtualHost>
Thank you for helping a complete noob in the game.