Questions tagged [nextcloud]
145 questions
1
vote
0 answers
Nginx reverse proxy stop domain from changing to local IP
I'm not familiar with any of this proxy stuff.
nginx config
I can't seem to find a solution to this issue. Right now when I type ex.domain.com it redirects to the IP address 192.168.1.202. How do I get it to visit that address but keep…

Jaa
- 11
- 1
1
vote
1 answer
Nextcloud can't connect to Collabora
i've setup a docker host, and wanted to setup nextcloud with collabora-office. But it simply does not find the collabora host. my compose file is the following:
version: '3.2'
services:
db:
image: mariadb:10.5
restart: always
…

Gooze
- 11
- 4
1
vote
1 answer
Configuration on Nginx for Nextcloud and Pi-Hole
I want to apologize already for the wrong use of terms and my general misunderstanding for... EVERYTHING :D
The context :
I rent a server for two purposes :
Nextcloud
Pi-Hole
I rent a name domain “www.mydomain.com” and I linked the IP address of…

PerfectJam
- 11
- 1
- 3
1
vote
1 answer
Run NextCloud PHP script ‘occ’ as webserver user, on Ansible connection
How do I write an Ansible task to run a PHP script as a third user; not the root user and not the connecting user, but the “webserver” user?
The NextCloud administration program occ, according to the documentation, must be run as the webserver…

bignose
- 992
- 1
- 10
- 22
1
vote
0 answers
Apache reverse proxy and wireguard
I own a VPS (ubuntu 20.04) running a VPN via Wireguard (1.0.20200513) and an Apache (2.4.41) web server, and I have a machine connected to this VPN running nextcloud (docker).
The issue is that whenever i try to upload a file greater than 2-2.5GB it…

Jose
- 29
- 3
1
vote
0 answers
What is the latest Ubuntu or Debian server I can install on proliant dl380 G6
I would like to know what is the latest Debian or Ubuntu server I could install on a dl380 G6 server.
I have to run 2 things on it.
Nextcloud 20 and
Odoo v14 (ERP)
Would this work or not? Or have I bought too old hardware?
I have seen that Debian 5…

Stephane
- 43
- 3
1
vote
1 answer
How to properly set specific PHP version used by Apache on Arch?
So it appears that after a recent Arch system upgrade, my NextCloud server no longer works, currently giving me "This version of Nextcloud is not compatible with > PHP 7.4. You are currently running 8.0.1."
php -v now gives me PHP 8.0.1 but i do…

DhP
- 161
- 2
- 6
1
vote
1 answer
Moving nextcloud into an apache VirtualHost block for use as a subdomain?
Nextcloud is currently being served at my-domain.dev/nextcloud.
I'd like to have it be served at cloud.my-domain.dev.
I've already set up an A record for cloud.my-domain.dev to point to my servers' IP address.
Sitting alongside my…

Karoh
- 155
- 2
- 7
1
vote
2 answers
Apache 'Header set' functions differently across browsers
I am running a self-hosted Nextcloud installation on Apache behind HAproxy.
I encountered an error with the fonts, similar to what is described in this forum post. As a remedy, it is suggested to alter the Content-Security-Policy like so:

Mu3
- 121
- 4
1
vote
0 answers
Can't change size of types_hash_max_size
Currently I'm trying to setup a nextcloud server with nginx. Now I've the following in my /etc/nginx/sites-available/nextcloud.conf:
server {
listen 443 ssl;
server_name localhost;
(...)
types_hash_bucket_size 8192;
…

TornaxO7
- 165
- 1
- 2
- 8
1
vote
1 answer
Is it possible to share files through Apache WebDAV?
Apache WebDAV allows to setup a WebDAV server without the PHP overhead which is usualy produced through Nextcloud/Owncloud. But is it also able to:
share a file / folder with other authed users?
share a file / folder by link for a guest?
Does…

mgutt
- 503
- 1
- 7
- 24
1
vote
1 answer
Nextcloud Mail not accessible using TLS
I configured my mail server on my server using Postfix and dovecot. SMTP and IMAP Server works well whan using the commands
openssl s_client -connect localhost:143 -starttls imap
and openssl s_client -connect localhost:25 -starttls smtp. I used…

Yann
- 25
- 7
1
vote
0 answers
Nextcloud in a FreeNAS jail served by NGINX behind a reverse proxy by IIS
My environment
Windows 10 pro host pc at IP 192.168.2.11
FreeNAS running in VMWare Workstation on host pc at IP 192.168.2.13
Nextcloud instance in a FreeNAS jail at IP 192.168.2.37 (installed by following these instructions and removing the…

Neijwiert
- 103
- 1
- 8
1
vote
1 answer
Move nextcloud to sub url but put a public folder at root (with nextcloud + nginx + nginx-docker-gen all in docker)
I have nextcloud running on https://cloud.museumsstrasse.at but since we will use nextcloud primarily for opening data to the public I would like that this nextcloud root url leads to a public nextcloud folder directly, e.g. to use this one:…

steffres
- 101
- 8
1
vote
0 answers
Make Haproxy translate from frontent-path to backend-root
I would like to access my nextcloud instance from the internet.
It is reachable within my network via cloud.daninet.local, and i want to access it externally via mydomain.com/cloud.
This is the config i have come up with so far:
frontend hass
…

Daniel
- 11
- 1