Add Nextcloud
This commit is contained in:
parent
95881525c4
commit
2db0611650
25
etc/nginx/conf.d/sites_nextcloud.conf
Normal file
25
etc/nginx/conf.d/sites_nextcloud.conf
Normal file
@ -0,0 +1,25 @@
|
||||
server {
|
||||
listen ipv4_1:443 quic reuseport;
|
||||
listen ipv4_1:443 ssl;
|
||||
listen [ipv6_1]:443 quic reuseport;
|
||||
listen [ipv6_1]:443 ssl;
|
||||
|
||||
server_name cloud.yourdomain.tld;
|
||||
|
||||
ssl_certificate /etc/letsencrypt/live/cloud.yourdomain.tld/fullchain.pem;
|
||||
ssl_certificate_key /etc/letsencrypt/live/cloud.yourdomain.tld/privkey.pem;
|
||||
ssl_trusted_certificate /etc/letsencrypt/live/cloud.yourdomain.tld/chain.pem;
|
||||
|
||||
include snippets/universal_paths.conf;
|
||||
include snippets/hsts.conf;
|
||||
include snippets/security.conf;
|
||||
include snippets/quic.conf;
|
||||
include snippets/proxy.conf;
|
||||
|
||||
add_header Cross-Origin-Resource-Policy "same-origin" always;
|
||||
add_header Cross-Origin-Opener-Policy "same-origin" always;
|
||||
|
||||
location / {
|
||||
proxy_pass http://nextcloud:8080;
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user