Set the add_header directive for Mastodon #218

Open
benjaoming wants to merge 1 commit from benjaoming/ansible:allow-origin-mastodon into main

View file

@ -1,2 +1,9 @@
listen 3000; listen 3000;
client_max_body_size 50M; # default is 1M client_max_body_size 50M; # default is 1M
# Mastodon needs to allow all clients to access stuff.
# This can be tweaked to only allow images/videos and certain HTTP methods like
# add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS';
# add_header 'Access-Control-Allow-Headers' 'Range';
# add_header 'Accept-Ranges' 'bytes';
add_header Access-Control-Allow-Origin *;