total rebase
[anni] / installation / pleroma-mediaproxy.nginx
1 # This file is for those who want to serve uploaded media and media proxy over
2 # another domain. This is STRONGLY RECOMMENDED.
3 # This is meant to be used ALONG WITH `pleroma.nginx`.
4
5 # If this is a new instance, replace the `location ~ ^/(media|proxy)` section in
6 # `pleroma.nginx` with the following to completely disable access to media from the main domain:
7 # location ~ ^/(media|proxy) {
8 #     return 404;
9 # }
10 #
11 # If you are configuring an existing instance to use another domain
12 # for media, you will want to keep redirecting all existing local media to the new domain
13 # so already-uploaded media will not break.
14 # Replace the `location ~ ^/(media|proxy)` section in `pleroma.nginx` with the following:
15 #
16 # location /media {
17 #     return 301 https://some.other.domain$request_uri;
18 # }
19 #
20 # location /proxy {
21 #     return 404;
22 # }
23
24 server {
25     server_name    some.other.domain;
26
27     listen         80;
28     listen         [::]:80;
29
30     # Uncomment this if you need to use the 'webroot' method with certbot. Make sure
31     # that the directory exists and that it is accessible by the webserver. If you followed
32     # the guide, you already ran 'mkdir -p /var/lib/letsencrypt' to create the folder.
33     # You may need to load this file with the ssl server block commented out, run certbot
34     # to get the certificate, and then uncomment it.
35     #
36     # location ~ /\.well-known/acme-challenge {
37     #     root /var/lib/letsencrypt/;
38     # }
39     location / {
40       return         301 https://$server_name$request_uri;
41     }
42 }
43
44 server {
45     server_name some.other.domain;
46
47     listen 443 ssl http2;
48     listen [::]:443 ssl http2;
49     ssl_session_timeout 1d;
50     ssl_session_cache shared:MozSSL:10m;  # about 40000 sessions
51     ssl_session_tickets off;
52
53     ssl_trusted_certificate   /etc/letsencrypt/live/some.other.domain/chain.pem;
54     ssl_certificate           /etc/letsencrypt/live/some.other.domain/fullchain.pem;
55     ssl_certificate_key       /etc/letsencrypt/live/some.other.domain/privkey.pem;
56
57     ssl_protocols TLSv1.2 TLSv1.3;
58     ssl_ciphers "ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
59     ssl_prefer_server_ciphers off;
60     # In case of an old server with an OpenSSL version of 1.0.2 or below,
61     # leave only prime256v1 or comment out the following line.
62     ssl_ecdh_curve X25519:prime256v1:secp384r1:secp521r1;
63     ssl_stapling on;
64     ssl_stapling_verify on;
65
66     gzip_vary on;
67     gzip_proxied any;
68     gzip_comp_level 6;
69     gzip_buffers 16 8k;
70     gzip_http_version 1.1;
71     gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript application/activity+json application/atom+xml;
72
73     # the nginx default is 1m, not enough for large media uploads
74     client_max_body_size 16m;
75     ignore_invalid_headers off;
76
77     proxy_http_version 1.1;
78     proxy_set_header Upgrade $http_upgrade;
79     proxy_set_header Connection "upgrade";
80     proxy_set_header Host $http_host;
81     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
82
83     location / { return 404; }
84
85     location ~ ^/(media|proxy) {
86         proxy_cache        pleroma_media_cache;
87         slice              1m;
88         proxy_cache_key    $host$uri$is_args$args$slice_range;
89         proxy_set_header   Range $slice_range;
90         proxy_cache_valid  200 206 301 304 1h;
91         proxy_cache_lock   on;
92         proxy_ignore_client_abort on;
93         proxy_buffering    on;
94         chunked_transfer_encoding on;
95         proxy_pass         http://phoenix;
96     }
97 }