mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-21 05:43:45 -07:00
initial upload
This commit is contained in:
parent
c91aa85ed4
commit
f2c8d54e2b
74 changed files with 2038 additions and 1 deletions
31
nextcloud.subdomain.conf.sample
Normal file
31
nextcloud.subdomain.conf.sample
Normal file
|
@ -0,0 +1,31 @@
|
|||
# make sure that your dns has a cname set for nextcloud
|
||||
# assuming this container is called "letsencrypt", edit your nextcloud container's config
|
||||
# located at /config/www/nextcloud/config/config.php and add the following lines before the ");":
|
||||
# 'trusted_proxies' => ['letsencrypt'],
|
||||
# 'overwrite.cli.url' => 'https://nextcloud.your-domain.com/',
|
||||
# 'overwritehost' => 'nextcloud.your-domain.com',
|
||||
# 'overwriteprotocol' => 'https',
|
||||
#
|
||||
# Also don't forget to add your domain name to the trusted domains array. It should look somewhat like this:
|
||||
# array (
|
||||
# 0 => '192.168.0.1:444', # This line may look different on your setup, don't modify it.
|
||||
# 1 => 'nextcloud.your-domain.com',
|
||||
# ),
|
||||
|
||||
server {
|
||||
listen 443 ssl;
|
||||
|
||||
server_name nextcloud.*;
|
||||
|
||||
include /config/nginx/ssl.conf;
|
||||
|
||||
client_max_body_size 0;
|
||||
|
||||
location / {
|
||||
include /config/nginx/proxy.conf;
|
||||
resolver 127.0.0.11 valid=30s;
|
||||
set $upstream_nextcloud nextcloud;
|
||||
proxy_max_temp_file_size 2048m;
|
||||
proxy_pass https://$upstream_nextcloud:443;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue