logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

pleroma-mediaproxy.nginx (3739B)


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