Hi everyone,
I have a standard EGroupware installation (via Docker) running on a VM and now I want to install Nextcloud (also Docker) on it.
I have Nginx running as a reverse proxy on the VM, and it works fine for EGroupware, but I can’t get Nextcloud to work.
I keep getting a 404 not found.
Here is my /etc/egroupware-docker/nginx.conf
client_max_body_size 1g;
map $http_x_forwarded_proto $redirectscheme {
default $scheme;
https https;
}server {
server_name myDNS.selfhost.bz;
root /var/www/html;index index.php index.nginx-debian.html index.html index.htm; location /nextcloud { proxy_pass http://127.0.0.1:8081; include proxy_params; # to allow longer running requests like eg. backup or restore proxy_read_timeout 60m; # required for push / websocket proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; }
}
server {
# ssl config (enable following line plus either include or ssl_certificate* line) #listen 443 ssl http2 default_server; #include snippets/snakeoil.conf; # requires ssl-certs package installed! # concatenate private key, certificate and intermediate certs to /etc/ssl/private/certificate.pem #ssl_certificate /etc/ssl/private/certificate.pem; #ssl_certificate_key /etc/ssl/private/certificate.pem; # HTTP Strict-Transport-Security header (start with a short max-age!) #add_header Strict-Transport-Security max-age=31536000; # 31536000sec=1year # A free of charge ssl certificate can be obtained from https://letsencrypt.org # Instrunctions for Ubuntu 16.04 are eg. available at server_name myDNS.selfhost.bz; root /var/www/html; index index.php index.nginx-debian.html index.html index.htm; # include other EGroupware parts like Collabora include app.d/egroupware*.conf; # proxy into EGroupware container location /egroupware { proxy_pass http://127.0.0.1:8080; include proxy_params; # to allow longer running requests like eg. backup or restore proxy_read_timeout 60m; # required for push / websocket proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; } # PHP in docroot #location ~ \.php { # fastcgi_pass unix:/run/php/php7.0-fpm.sock; # include fastcgi_params; #} location = /status { proxy_pass http://127.0.0.1:8080; include proxy_params; } # ActiveSync support location /Microsoft-Server-ActiveSync { proxy_pass http://127.0.0.1:8080; include proxy_params; # RB changed to 60m (from 20m) because that is length of zPush ping requests proxy_read_timeout 60m; } # CalDAV/CardDAV & OpenID Connect autoconfig location ~ ^/.well-known/(caldav|carddav|openid-configuration)$ { proxy_pass http://127.0.0.1:8080; include proxy_params; } location ~ ^(/principals/users/.*)$ { return 301 $redirectscheme://$host/egroupware/groupdav.php$1; } # Nginx does NOT use index for OPTIONS requests breakng WebDAV # for Windows, which sends OPTIONS / and stalls on Nginx 405 response! # This also redirects all requests to root to EGroupware. location = / { return 301 $redirectscheme://$host/egroupware/index.php; } # redirect /egroupware to /egroupware/ location = /egroupware { return 301 $redirectscheme://$host/egroupware/index.php; }
listen 443 http2 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/myDNS.selfhost.bz/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/myDNS.selfhost.bz/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot}
server {
if ($host = myDNS.selfhost.bz) {
return 301 https://$host$request_uri;
} # managed by Certbotlisten 80 default_server; server_name myDNS.selfhost.bz; return 404; # managed by Certbot
}
The first “Server” Section ist the one I made, the rest ist from the EGroupware installation.
I can get the nextcloud at localhost:8081, but anything else fails.
Can anybody help me?
Thanks a lot
Michael