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`.
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) {
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:
17 # return 301 https://some.other.domain$request_uri;
25 server_name some.other.domain;
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.
36 # location ~ /\.well-known/acme-challenge {
37 # root /var/lib/letsencrypt/;
40 return 301 https://$server_name$request_uri;
45 server_name some.other.domain;
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;
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;
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;
64 ssl_stapling_verify on;
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;
73 # the nginx default is 1m, not enough for large media uploads
74 client_max_body_size 16m;
75 ignore_invalid_headers off;
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;
83 location / { return 404; }
85 location ~ ^/(media|proxy) {
86 proxy_cache pleroma_media_cache;
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;
92 proxy_ignore_client_abort on;
94 chunked_transfer_encoding on;
95 proxy_pass http://phoenix;