Alex Taber 6 gadus atpakaļ
vecāks
revīzija
13e9ed9f63
1 mainītis faili ar 169 papildinājumiem un 0 dzēšanām
  1. 169
    0
      sites-available/nextcloud

+ 169
- 0
sites-available/nextcloud Parādīt failu

@@ -0,0 +1,169 @@
1
+upstream php-handler {
2
+    server 127.0.0.1:9000;
3
+    server unix:/run/php/php7.2-fpm.sock;
4
+}
5
+
6
+server {
7
+    listen 80;
8
+    listen [::]:80;
9
+    server_name cloud.ataber.pw;
10
+    # enforce https
11
+    return 301 https://$server_name$request_uri;
12
+}
13
+
14
+server {
15
+    listen 443 ssl http2;
16
+    listen [::]:443 ssl http2;
17
+    server_name cloud.ataber.pw;
18
+
19
+    ssl_certificate /etc/letsencrypt/live/ataber.pw/fullchain.pem;
20
+    ssl_certificate_key /etc/letsencrypt/live/ataber.pw/privkey.pem;
21
+	ssl_trusted_certificate /etc/letsencrypt/live/ataber.pw/chain.pem;
22
+
23
+    add_header X-Content-Type-Options nosniff;
24
+    add_header X-XSS-Protection "1; mode=block";
25
+    add_header X-Robots-Tag none;
26
+    add_header X-Download-Options noopen;
27
+    add_header X-Permitted-Cross-Domain-Policies none;
28
+    add_header Referrer-Policy no-referrer;
29
+    add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;
30
+
31
+    fastcgi_hide_header X-Powered-By;
32
+
33
+    # Path to the root of your installation
34
+    root /var/www/nextcloud/;
35
+
36
+    location = /robots.txt {
37
+        allow all;
38
+        log_not_found off;
39
+        access_log off;
40
+    }
41
+
42
+    # The following 2 rules are only needed for the user_webfinger app.
43
+    # Uncomment it if you're planning to use this app.
44
+    #rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
45
+    #rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json
46
+    # last;
47
+
48
+    location = /.well-known/carddav {
49
+      return 301 $scheme://$host/remote.php/dav;
50
+    }
51
+    location = /.well-known/caldav {
52
+      return 301 $scheme://$host/remote.php/dav;
53
+    }
54
+
55
+    # set max upload size
56
+    client_max_body_size 512M;
57
+    fastcgi_buffers 64 4K;
58
+
59
+    # Enable gzip but do not remove ETag headers
60
+    gzip on;
61
+    gzip_vary on;
62
+    gzip_comp_level 4;
63
+    gzip_min_length 256;
64
+    gzip_proxied expired no-cache no-store private no_last_modified no_etag auth;
65
+    gzip_types application/atom+xml application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy;
66
+
67
+    # Uncomment if your server is build with the ngx_pagespeed module
68
+    # This module is currently not supported.
69
+    #pagespeed off;
70
+
71
+    location / {
72
+        rewrite ^ /index.php$request_uri;
73
+    }
74
+
75
+    location ~ ^/(?:build|tests|config|lib|3rdparty|templates|data)/ {
76
+        deny all;
77
+    }
78
+    location ~ ^/(?:\.|autotest|occ|issue|indie|db_|console) {
79
+        deny all;
80
+    }
81
+
82
+    location ~ ^/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-provider/.+)\.php(?:$|/) {
83
+        fastcgi_split_path_info ^(.+?\.php)(/.*)$;
84
+        include fastcgi_params;
85
+        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
86
+        fastcgi_param PATH_INFO $fastcgi_path_info;
87
+        fastcgi_param HTTPS on;
88
+        #Avoid sending the security headers twice
89
+        fastcgi_param modHeadersAvailable true;
90
+        fastcgi_param front_controller_active true;
91
+        fastcgi_pass php-handler;
92
+        fastcgi_intercept_errors on;
93
+        fastcgi_request_buffering off;
94
+    }
95
+
96
+    location ~ ^/(?:updater|ocs-provider)(?:$|/) {
97
+        try_files $uri/ =404;
98
+        index index.php;
99
+    }
100
+
101
+    # Adding the cache control header for js and css files
102
+    # Make sure it is BELOW the PHP block
103
+    location ~ \.(?:css|js|woff|svg|gif)$ {
104
+        try_files $uri /index.php$request_uri;
105
+        add_header Cache-Control "public, max-age=15778463";
106
+        # Add headers to serve security related headers (It is intended to
107
+        # have those duplicated to the ones above)
108
+        # Before enabling Strict-Transport-Security headers please read into
109
+        # this topic first.
110
+        # add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload;";
111
+        #
112
+        # WARNING: Only add the preload option once you read about
113
+        # the consequences in https://hstspreload.org/. This option
114
+        # will add the domain to a hardcoded list that is shipped
115
+        # in all major browsers and getting removed from this list
116
+        # could take several months.
117
+        add_header X-Content-Type-Options nosniff;
118
+        add_header X-XSS-Protection "1; mode=block";
119
+        add_header X-Robots-Tag none;
120
+        add_header X-Download-Options noopen;
121
+        add_header X-Permitted-Cross-Domain-Policies none;
122
+        add_header Referrer-Policy no-referrer;
123
+
124
+        # Optional: Don't log access to assets
125
+        access_log off;
126
+    }
127
+
128
+    location ~ \.(?:png|html|ttf|ico|jpg|jpeg)$ {
129
+        try_files $uri /index.php$request_uri;
130
+        # Optional: Don't log access to other assets
131
+        access_log off;
132
+    }
133
+
134
+    # static files
135
+    location ^~ /loleaflet {
136
+        proxy_pass https://localhost:9980;
137
+        proxy_set_header Host $http_host;
138
+    }
139
+
140
+    # WOPI discovery URL
141
+    location ^~ /hosting/discovery {
142
+        proxy_pass https://localhost:9980;
143
+        proxy_set_header Host $http_host;
144
+    }
145
+
146
+   # main websocket
147
+   location ~ ^/lool/(.*)/ws$ {
148
+       proxy_pass https://localhost:9980;
149
+       proxy_set_header Upgrade $http_upgrade;
150
+       proxy_set_header Connection "Upgrade";
151
+       proxy_set_header Host $http_host;
152
+       proxy_read_timeout 36000s;
153
+   }
154
+   
155
+   # download, presentation and image upload
156
+   location ~ ^/lool {
157
+       proxy_pass https://localhost:9980;
158
+       proxy_set_header Host $http_host;
159
+   }
160
+   
161
+   # Admin Console websocket
162
+   location ^~ /lool/adminws {
163
+       proxy_pass https://localhost:9980;
164
+       proxy_set_header Upgrade $http_upgrade;
165
+       proxy_set_header Connection "Upgrade";
166
+       proxy_set_header Host $http_host;
167
+       proxy_read_timeout 36000s;
168
+   }
169
+}