Nextcloud. Nginx config added.

This commit is contained in:
Alexey Skobkin 2020-04-30 01:35:51 +03:00
parent e549e092a9
commit 237e44fca5
No known key found for this signature in database
GPG Key ID: 5D5CEF6F221278E7
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
server {
listen 443 ssl http2;
server_name nextcloud.server.tld;
#access_log /var/log/nginx/nextcloud.server.tld.access;
error_log /var/log/nginx/nextcloud.server.tld.error;
charset utf-8;
location / {
proxy_pass http://127.0.0.1:8443;
}
#include config/gzip.conf;
# Wildcard certificate config
#include ssl/server.tld.conf;
}